Historic District of Thailand
other · Bangkok · ★ 4.2 (4649)
Overview
places / #60
other · Bangkok · ★ 4.2 (4649)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/places/60" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/places/60" ); const place = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/places.d.ts https://example-data.com/types/places.d.ts
import type { Place } from "./types/places";
const res = await fetch(
"https://example-data.com/api/v1/places/60"
);
const place = (await res.json()) as Place; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/places/60"
)
place = res.json() Response
{
"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"
}