Town Hall of Greece
other · Athens · ★ 4.8 (4857)
places / #33
other · Athens · ★ 4.8 (4857)
curl -sS \
"https://example-data.com/api/v1/places/33" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/places/33"
);
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/33"
);
const place = (await res.json()) as Place;import requests
res = requests.get(
"https://example-data.com/api/v1/places/33"
)
place = res.json() {
"id": 33,
"name": "Town Hall of Greece",
"slug": "town-hall-of-greece-33",
"kind": "other",
"city": "Athens",
"countryAlpha2": "GR",
"latitude": -2.093416,
"longitude": -124.517874,
"rating": 4.8,
"ratingCount": 4857,
"description": "Quam sollicito constans villa explicabo trucido careo tres angelus arbitro. Tener tamisium annus spiculum decet. Assentator in curso vesco artificiose.",
"imageUrl": "https://picsum.photos/seed/place-33/1200/800",
"createdAt": "2026-02-19T04:17:39.928Z"
}