Forest Park of Finland
park · Helsinki · ★ 3.2 (3391)
places / #136
park · Helsinki · ★ 3.2 (3391)
curl -sS \
"https://example-data.com/api/v1/places/136" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/places/136"
);
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/136"
);
const place = (await res.json()) as Place;import requests
res = requests.get(
"https://example-data.com/api/v1/places/136"
)
place = res.json() {
"id": 136,
"name": "Forest Park of Finland",
"slug": "forest-park-of-finland-136",
"kind": "park",
"city": "Helsinki",
"countryAlpha2": "FI",
"latitude": -23.147503,
"longitude": -22.84164,
"rating": 3.2,
"ratingCount": 3391,
"description": "Strenuus turbo crudelis. Solum ars aspernatur nihil pauci vesper correptius depopulo. Appono titulus aer ait cibo arca.",
"imageUrl": "https://picsum.photos/seed/place-136/1200/800",
"createdAt": "2025-08-25T23:27:12.904Z"
}