Community Garden of Sweden
other · Stockholm · ★ 4.9 (2939)
places / #35
other · Stockholm · ★ 4.9 (2939)
curl -sS \
"https://example-data.com/api/v1/places/35" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/places/35"
);
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/35"
);
const place = (await res.json()) as Place;import requests
res = requests.get(
"https://example-data.com/api/v1/places/35"
)
place = res.json() {
"id": 35,
"name": "Community Garden of Sweden",
"slug": "community-garden-of-sweden-35",
"kind": "other",
"city": "Stockholm",
"countryAlpha2": "SE",
"latitude": 0.451694,
"longitude": -31.880038,
"rating": 4.9,
"ratingCount": 2939,
"description": "Fugiat aequus advenio. Possimus alioqui vero abutor. Tabernus cilicium velit veniam ex.",
"imageUrl": "https://picsum.photos/seed/place-35/1200/800",
"createdAt": "2025-02-20T18:04:59.101Z"
}