Forest Park of Nigeria
park · Abuja · ★ 3.8 (4166)
Overview
places / #83
park · Abuja · ★ 3.8 (4166)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/places/83" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/places/83" ); 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/83"
);
const place = (await res.json()) as Place; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/places/83"
)
place = res.json() Response
{
"id": 83,
"name": "Forest Park of Nigeria",
"slug": "forest-park-of-nigeria-83",
"kind": "park",
"city": "Abuja",
"countryAlpha2": "NG",
"latitude": 14.449784,
"longitude": -145.815196,
"rating": 3.8,
"ratingCount": 4166,
"description": "Concedo ago iure audax. Vergo viduo nostrum tolero tui cena. Deserunt certus depromo.",
"imageUrl": "https://picsum.photos/seed/place-83/1200/800",
"createdAt": "2025-12-31T04:02:10.762Z"
}