example-data.com
Menu
Browse docs and collections

Overview

places / #83

Forest Park of Nigeria

Forest Park of Nigeria

park · Abuja · ★ 3.8 (4166)

Component variants

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"
}