Cup & Saucer of Greece
cafe · Athens · ★ 4.9 (1997)
places / #130
cafe · Athens · ★ 4.9 (1997)
curl -sS \
"https://example-data.com/api/v1/places/130" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/places/130"
);
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/130"
);
const place = (await res.json()) as Place;import requests
res = requests.get(
"https://example-data.com/api/v1/places/130"
)
place = res.json() {
"id": 130,
"name": "Cup & Saucer of Greece",
"slug": "cup-saucer-of-greece-130",
"kind": "cafe",
"city": "Athens",
"countryAlpha2": "GR",
"latitude": -34.094437,
"longitude": -96.964349,
"rating": 4.9,
"ratingCount": 1997,
"description": "Cetera quibusdam eius corporis. Depereo admoneo eaque modi demo tripudio coaegresco defero adipisci. Ad terror cena auctor volo valens vae advoco.",
"imageUrl": "https://picsum.photos/seed/place-130/1200/800",
"createdAt": "2023-01-07T07:19:33.307Z"
}