Forest Park of Finland
park · Helsinki · ★ 3.2 (3391)
Overview
places / #136
park · Helsinki · ★ 3.2 (3391)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/places/136" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/places/136" ); const place = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/places.d.ts https://example-data.com/types/places.d.ts
import type { Place } from "./types/places";
const res = await fetch(
"https://example-data.com/api/v1/places/136"
);
const place = (await res.json()) as Place; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/places/136"
)
place = res.json() Response
{
"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"
}