example-data.com

places / #37

Old Town Eats of Norway

Old Town Eats of Norway

restaurant · Oslo · ★ 3.3 (2557)

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/places/37"
)
place = res.json()
{
  "id": 37,
  "name": "Old Town Eats of Norway",
  "slug": "old-town-eats-of-norway-37",
  "kind": "restaurant",
  "city": "Oslo",
  "countryAlpha2": "NO",
  "latitude": 65.023969,
  "longitude": 28.2689,
  "rating": 3.3,
  "ratingCount": 2557,
  "description": "Bos usque velit. Vesper amaritudo suasoria. Admoneo templum cerno cursus carpo defungo conforto crastinus pariatur.",
  "imageUrl": "https://picsum.photos/seed/place-37/1200/800",
  "createdAt": "2024-11-19T13:05:59.033Z"
}
Draftbit