Forest Walk of Sweden
hiking · Stockholm · ★ 3.9 (3581)
places / #131
hiking · Stockholm · ★ 3.9 (3581)
curl -sS \
"https://example-data.com/api/v1/places/131" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/places/131"
);
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/131"
);
const place = (await res.json()) as Place;import requests
res = requests.get(
"https://example-data.com/api/v1/places/131"
)
place = res.json() {
"id": 131,
"name": "Forest Walk of Sweden",
"slug": "forest-walk-of-sweden-131",
"kind": "hiking",
"city": "Stockholm",
"countryAlpha2": "SE",
"latitude": -48.136069,
"longitude": 170.280275,
"rating": 3.9,
"ratingCount": 3581,
"description": "Tremo voluntarius bos capitulus textilis hic sursum universe vaco. Communis aurum atrocitas. Adfectus una textor.",
"imageUrl": "https://picsum.photos/seed/place-131/1200/800",
"createdAt": "2024-07-09T17:37:44.314Z"
}