example-data.com

restaurants / #82

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/restaurants/82"
)
restaurant = res.json()
{
  "id": 82,
  "name": "Rogahn - Kreiger",
  "slug": "rogahn-kreiger-82",
  "cuisine": "thai",
  "priceRange": "$$$$",
  "rating": 4.6,
  "ratingCount": 470,
  "countryAlpha2": "BE",
  "city": "South Cathrynside",
  "neighborhood": "Clay County",
  "address": "26683 Peggie Streets",
  "phone": "(569) 496-5167",
  "website": "https://rogahn-kreiger-82.example.com",
  "hasDelivery": false,
  "isOpen": true,
  "latitude": -1.937047,
  "longitude": 126.549747,
  "createdAt": "2026-03-07T22:09:58.839Z",
  "updatedAt": "2026-03-07T22:09:58.839Z"
}
Draftbit