example-data.com
Menu
Browse docs and collections

Overview

places / #53

Old Town Eats of India

Old Town Eats of India

restaurant · New Delhi · ★ 4.1 (3410)

Component variants

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/places/53" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/places/53"
);
const place = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/places.d.ts https://example-data.com/types/places.d.ts
import type { Place } from "./types/places";

const res = await fetch(
  "https://example-data.com/api/v1/places/53"
);
const place = (await res.json()) as Place;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/places/53"
)
place = res.json()

Response

{
  "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"
}