Vista Lookout of Poland
viewpoint · Warsaw · ★ 3.2 (4508)
places / #42
viewpoint · Warsaw · ★ 3.2 (4508)
curl -sS \
"https://example-data.com/api/v1/places/42" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/places/42"
);
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/42"
);
const place = (await res.json()) as Place;import requests
res = requests.get(
"https://example-data.com/api/v1/places/42"
)
place = res.json() {
"id": 42,
"name": "Vista Lookout of Poland",
"slug": "vista-lookout-of-poland-42",
"kind": "viewpoint",
"city": "Warsaw",
"countryAlpha2": "PL",
"latitude": -29.61666,
"longitude": 3.256245,
"rating": 3.2,
"ratingCount": 4508,
"description": "Caveo maxime ter color coepi maiores voluptas suppellex. Enim dedecor cavus admiratio. Tempora arca repellendus tunc callide temptatio synagoga studio earum terreo.",
"imageUrl": "https://picsum.photos/seed/place-42/1200/800",
"createdAt": "2024-03-17T19:02:58.197Z"
}