Cascade Trail of Germany
hiking · Berlin · ★ 4.2 (2320)
places / #115
hiking · Berlin · ★ 4.2 (2320)
curl -sS \
"https://example-data.com/api/v1/places/115" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/places/115"
);
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/115"
);
const place = (await res.json()) as Place;import requests
res = requests.get(
"https://example-data.com/api/v1/places/115"
)
place = res.json() {
"id": 115,
"name": "Cascade Trail of Germany",
"slug": "cascade-trail-of-germany-115",
"kind": "hiking",
"city": "Berlin",
"countryAlpha2": "DE",
"latitude": -4.631323,
"longitude": 29.152334,
"rating": 4.2,
"ratingCount": 2320,
"description": "Sperno alioqui illo abscido compono tergo quia accedo turba. Decumbo condico tactus ait. Adflicto commodo creta anser tunc ara sequi.",
"imageUrl": "https://picsum.photos/seed/place-115/1200/800",
"createdAt": "2025-05-20T11:58:42.664Z"
}