Historic District of Thailand
other · Bangkok · ★ 4.2 (4649)
places / #60
other · Bangkok · ★ 4.2 (4649)
curl -sS \
"https://example-data.com/api/v1/places/60" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/places/60"
);
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/60"
);
const place = (await res.json()) as Place;import requests
res = requests.get(
"https://example-data.com/api/v1/places/60"
)
place = res.json() {
"id": 60,
"name": "Historic District of Thailand",
"slug": "historic-district-of-thailand-60",
"kind": "other",
"city": "Bangkok",
"countryAlpha2": "TH",
"latitude": 28.758827,
"longitude": -71.99336,
"rating": 4.2,
"ratingCount": 4649,
"description": "Ceno caput pectus ager capitulus. Cui campana vel arceo statua adulescens decet. Bellum caritas una coerceo animadverto culpa vestigium sophismata pauci.",
"imageUrl": "https://picsum.photos/seed/place-60/1200/800",
"createdAt": "2021-11-05T23:51:09.105Z"
}