example-data.com

restaurants / #32

Walker - Botsford

chinese · Zulaufburgh · $$$$ · ★ 3.7 (2173)

928 Main Street S

Phone
(876) 886-5005

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/restaurants/32"
)
restaurant = res.json()
{
  "id": 32,
  "name": "Walker - Botsford",
  "slug": "walker-botsford-32",
  "cuisine": "chinese",
  "priceRange": "$$$$",
  "rating": 3.7,
  "ratingCount": 2173,
  "countryAlpha2": "TR",
  "city": "Zulaufburgh",
  "neighborhood": "Gwynedd County",
  "address": "928 Main Street S",
  "phone": "(876) 886-5005",
  "website": null,
  "hasDelivery": true,
  "isOpen": true,
  "latitude": 41.335771,
  "longitude": 123.342184,
  "createdAt": "2025-08-18T09:27:09.979Z",
  "updatedAt": "2025-08-18T09:27:09.979Z"
}
Draftbit