example-data.com

restaurants / #33

McGlynn, Bosco and Gusikowski

american · Altadena · $ · ★ 3.8 (2770)

906 Homenick Circle

Phone
(493) 230-6784

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/restaurants/33" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/restaurants/33"
);
const restaurant = await res.json();
import type { Restaurant } from "https://example-data.com/types/restaurants.d.ts";

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

res = requests.get(
    "https://example-data.com/api/v1/restaurants/33"
)
restaurant = res.json()
{
  "id": 33,
  "name": "McGlynn, Bosco and Gusikowski",
  "slug": "mcglynn-bosco-and-gusikowski-33",
  "cuisine": "american",
  "priceRange": "$",
  "rating": 3.8,
  "ratingCount": 2770,
  "countryAlpha2": "KE",
  "city": "Altadena",
  "neighborhood": "Durham",
  "address": "906 Homenick Circle",
  "phone": "(493) 230-6784",
  "website": null,
  "hasDelivery": false,
  "isOpen": true,
  "latitude": 36.396651,
  "longitude": 32.845506,
  "createdAt": "2024-08-16T00:06:17.954Z",
  "updatedAt": "2024-08-16T00:06:17.954Z"
}
Draftbit