Cup & Saucer of Iceland
cafe · Reykjavík · ★ 4.2 (4431)
places / #139
cafe · Reykjavík · ★ 4.2 (4431)
curl -sS \
"https://example-data.com/api/v1/places/139" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/places/139"
);
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/139"
);
const place = (await res.json()) as Place;import requests
res = requests.get(
"https://example-data.com/api/v1/places/139"
)
place = res.json() {
"id": 139,
"name": "Cup & Saucer of Iceland",
"slug": "cup-saucer-of-iceland-139",
"kind": "cafe",
"city": "Reykjavík",
"countryAlpha2": "IS",
"latitude": -2.829569,
"longitude": -147.557429,
"rating": 4.2,
"ratingCount": 4431,
"description": "Qui celebrer paulatim sit aeternus. Ultra currus comes cornu administratio civitas spero terror bonus. Depulso numquam bos capto suppono theatrum caput trepide.",
"imageUrl": "https://picsum.photos/seed/place-139/1200/800",
"createdAt": "2024-07-12T19:17:21.680Z"
}