example-data.com
Menu
Browse docs and collections

Overview

restaurants / #95

Welch LLC

japanese · North Brando · $$ · ★ 4.0 (2718)

25530 Lincoln Highway

Phone
+1 202-555-0194 ext 1

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/restaurants/95" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/restaurants/95"
);
const restaurant = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/restaurants.d.ts https://example-data.com/types/restaurants.d.ts
import type { Restaurant } from "./types/restaurants";

const res = await fetch(
  "https://example-data.com/api/v1/restaurants/95"
);
const restaurant = (await res.json()) as Restaurant;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/restaurants/95"
)
restaurant = res.json()

Response

{
  "id": 95,
  "name": "Welch LLC",
  "slug": "welch-llc-95",
  "cuisine": "japanese",
  "priceRange": "$$",
  "rating": 4,
  "ratingCount": 2718,
  "countryAlpha2": "SA",
  "city": "North Brando",
  "neighborhood": "Fife",
  "address": "25530 Lincoln Highway",
  "phone": "+1 202-555-0194 ext 1",
  "website": null,
  "hasDelivery": false,
  "isOpen": true,
  "latitude": -50.846152,
  "longitude": -175.165825,
  "createdAt": "2025-05-06T14:20:18.632Z",
  "updatedAt": "2025-05-06T14:20:18.632Z"
}