Forest Park of Finland
park · Helsinki · ★ 4.8 (3687)
Overview
places / #38
park · Helsinki · ★ 4.8 (3687)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/places/38" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/places/38" ); 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/38"
);
const place = (await res.json()) as Place; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/places/38"
)
place = res.json() Response
{
"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"
}