Historic District of Japan
other · Tokyo · ★ 4.6 (1974)
Overview
places / #148
other · Tokyo · ★ 4.6 (1974)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/places/148" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/places/148" ); 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/148"
);
const place = (await res.json()) as Place; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/places/148"
)
place = res.json() Response
{
"id": 148,
"name": "Historic District of Japan",
"slug": "historic-district-of-japan-148",
"kind": "other",
"city": "Tokyo",
"countryAlpha2": "JP",
"latitude": 33.779501,
"longitude": -68.646958,
"rating": 4.6,
"ratingCount": 1974,
"description": "Amplus varietas stillicidium tam cavus ager numquam. Abutor inflammatio charisma qui crepusculum. Suppono ara clarus totam cubitum ait congregatio porro suus celebrer.",
"imageUrl": "https://picsum.photos/seed/place-148/1200/800",
"createdAt": "2022-01-31T19:18:56.289Z"
}