example-data.com

restaurants / #68

Hayes - McDermott

korean · Lake Tanya · $$$ · ★ 2.5 (2988)

1102 Front Street

Phone
(711) 906-3968

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/restaurants/68" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/restaurants/68"
);
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/68"
);
const restaurant = (await res.json()) as Restaurant;
import requests

res = requests.get(
    "https://example-data.com/api/v1/restaurants/68"
)
restaurant = res.json()
{
  "id": 68,
  "name": "Hayes - McDermott",
  "slug": "hayes-mcdermott-68",
  "cuisine": "korean",
  "priceRange": "$$$",
  "rating": 2.5,
  "ratingCount": 2988,
  "countryAlpha2": "ET",
  "city": "Lake Tanya",
  "neighborhood": "Somerset",
  "address": "1102 Front Street",
  "phone": "(711) 906-3968",
  "website": null,
  "hasDelivery": false,
  "isOpen": true,
  "latitude": 22.528954,
  "longitude": -72.242266,
  "createdAt": "2024-08-14T13:58:30.349Z",
  "updatedAt": "2024-08-14T13:58:30.349Z"
}
Draftbit