Forest Park of Singapore
park · Singapore · ★ 3.4 (3020)
places / #68
park · Singapore · ★ 3.4 (3020)
curl -sS \
"https://example-data.com/api/v1/places/68" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/places/68"
);
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/68"
);
const place = (await res.json()) as Place;import requests
res = requests.get(
"https://example-data.com/api/v1/places/68"
)
place = res.json() {
"id": 68,
"name": "Forest Park of Singapore",
"slug": "forest-park-of-singapore-68",
"kind": "park",
"city": "Singapore",
"countryAlpha2": "SG",
"latitude": -5.699327,
"longitude": -122.502714,
"rating": 3.4,
"ratingCount": 3020,
"description": "Confugo amo communis cura cenaculum. Suppellex sto impedit suggero cura coadunatio tot aggero. Turbo similique vero addo viscus aegre tener clarus sortitus sono.",
"imageUrl": "https://picsum.photos/seed/place-68/1200/800",
"createdAt": "2023-12-13T05:54:59.082Z"
}