Grand Bazaar of Switzerland
shopping · Bern · ★ 3.1 (4458)
places / #43
shopping · Bern · ★ 3.1 (4458)
curl -sS \
"https://example-data.com/api/v1/places/43" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/places/43"
);
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/43"
);
const place = (await res.json()) as Place;import requests
res = requests.get(
"https://example-data.com/api/v1/places/43"
)
place = res.json() {
"id": 43,
"name": "Grand Bazaar of Switzerland",
"slug": "grand-bazaar-of-switzerland-43",
"kind": "shopping",
"city": "Bern",
"countryAlpha2": "CH",
"latitude": 9.347325,
"longitude": 40.936163,
"rating": 3.1,
"ratingCount": 4458,
"description": "Vitium iure tendo adulatio tersus. Arbustum absconditus quidem maiores temptatio. Conor appello coma similique claro.",
"imageUrl": "https://picsum.photos/seed/place-43/1200/800",
"createdAt": "2022-10-10T05:42:39.374Z"
}