Designer District of Denmark
shopping · Copenhagen · ★ 3.4 (2783)
places / #138
shopping · Copenhagen · ★ 3.4 (2783)
curl -sS \
"https://example-data.com/api/v1/places/138" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/places/138"
);
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/138"
);
const place = (await res.json()) as Place;import requests
res = requests.get(
"https://example-data.com/api/v1/places/138"
)
place = res.json() {
"id": 138,
"name": "Designer District of Denmark",
"slug": "designer-district-of-denmark-138",
"kind": "shopping",
"city": "Copenhagen",
"countryAlpha2": "DK",
"latitude": -45.771749,
"longitude": 62.135661,
"rating": 3.4,
"ratingCount": 2783,
"description": "Quasi eligendi quasi. Tener spargo crapula sit. Attonbitus sollicito thesaurus cognomen abutor adversus cupio vulgo.",
"imageUrl": "https://picsum.photos/seed/place-138/1200/800",
"createdAt": "2024-02-06T16:15:17.870Z"
}