Old Town Eats of India
restaurant · New Delhi · ★ 4.1 (3410)
places / #53
restaurant · New Delhi · ★ 4.1 (3410)
curl -sS \
"https://example-data.com/api/v1/places/53" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/places/53"
);
const place = await res.json();import type { Place } from "https://example-data.com/types/places.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/places/53"
);
const place = (await res.json()) as Place;import requests
res = requests.get(
"https://example-data.com/api/v1/places/53"
)
place = res.json() {
"id": 53,
"name": "Old Town Eats of India",
"slug": "old-town-eats-of-india-53",
"kind": "restaurant",
"city": "New Delhi",
"countryAlpha2": "IN",
"latitude": 23.438142,
"longitude": -168.685033,
"rating": 4.1,
"ratingCount": 3410,
"description": "Stipes arguo blanditiis uredo. Depraedor vicinus suasoria auditor texo. Veritatis alveus cado.",
"imageUrl": "https://picsum.photos/seed/place-53/1200/800",
"createdAt": "2026-03-10T17:06:58.082Z"
}