Cathedral of Turkey
landmark · Ankara · ★ 4.7 (2096)
places / #77
landmark · Ankara · ★ 4.7 (2096)
curl -sS \
"https://example-data.com/api/v1/places/77" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/places/77"
);
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/77"
);
const place = (await res.json()) as Place;import requests
res = requests.get(
"https://example-data.com/api/v1/places/77"
)
place = res.json() {
"id": 77,
"name": "Cathedral of Turkey",
"slug": "cathedral-of-turkey-77",
"kind": "landmark",
"city": "Ankara",
"countryAlpha2": "TR",
"latitude": 14.724434,
"longitude": 63.516555,
"rating": 4.7,
"ratingCount": 2096,
"description": "Caveo explicabo depopulo dapifer bellum et. Alo infit cunae architecto deinde vergo deprecator. Itaque corona desolo coniecto consuasor aut beatus ager.",
"imageUrl": "https://picsum.photos/seed/place-77/1200/800",
"createdAt": "2023-01-30T23:46:21.099Z"
}