Forest Park of Finland
park · Helsinki · ★ 4.8 (3687)
places / #38
park · Helsinki · ★ 4.8 (3687)
curl -sS \
"https://example-data.com/api/v1/places/38" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/places/38"
);
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/38"
);
const place = (await res.json()) as Place;import requests
res = requests.get(
"https://example-data.com/api/v1/places/38"
)
place = res.json() {
"id": 38,
"name": "Forest Park of Finland",
"slug": "forest-park-of-finland-38",
"kind": "park",
"city": "Helsinki",
"countryAlpha2": "FI",
"latitude": -36.857202,
"longitude": -10.711281,
"rating": 4.8,
"ratingCount": 3687,
"description": "Calcar comburo coruscus tutis abscido laboriosam. Concido timor tantum eos auditor speciosus valetudo. Comburo paulatim eum ars reprehenderit conqueror clam a.",
"imageUrl": "https://picsum.photos/seed/place-38/1200/800",
"createdAt": "2026-04-05T05:30:59.188Z"
}