example-data.com

restaurants / #62

Douglas Group

thai · New Cletastead · $$$ · ★ 3.3 (566)

9607 Lauriane Fort

Phone
(408) 265-7629

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/restaurants/62"
)
restaurant = res.json()
{
  "id": 62,
  "name": "Douglas Group",
  "slug": "douglas-group-62",
  "cuisine": "thai",
  "priceRange": "$$$",
  "rating": 3.3,
  "ratingCount": 566,
  "countryAlpha2": "SG",
  "city": "New Cletastead",
  "neighborhood": "Hertfordshire",
  "address": "9607 Lauriane Fort",
  "phone": "(408) 265-7629",
  "website": null,
  "hasDelivery": true,
  "isOpen": true,
  "latitude": -28.367833,
  "longitude": -163.990565,
  "createdAt": "2025-11-10T17:33:50.974Z",
  "updatedAt": "2025-11-10T17:33:50.974Z"
}
Draftbit