Old Town Eats of Norway
restaurant · Oslo · ★ 3.3 (2557)
Overview
places / #37
restaurant · Oslo · ★ 3.3 (2557)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/places/37" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/places/37" ); 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/37"
);
const place = (await res.json()) as Place; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/places/37"
)
place = res.json() Response
{
"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"
}