Historic District of United States
other · Washington, D.C. · ★ 4.7 (1818)
Overview
places / #1
other · Washington, D.C. · ★ 4.7 (1818)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/places/1" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/places/1" ); 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/1"
);
const place = (await res.json()) as Place; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/places/1"
)
place = res.json() Response
{
"id": 1,
"name": "Historic District of United States",
"slug": "historic-district-of-united-states-1",
"kind": "other",
"city": "Washington, D.C.",
"countryAlpha2": "US",
"latitude": -35.576761,
"longitude": 24.092559,
"rating": 4.7,
"ratingCount": 1818,
"description": "Ars apto acidus accusantium aliquam vestrum hic cibo ager volup. Coaegresco vacuus vado sustineo clam compono qui ancilla. Defessus cometes aurum deporto coaegresco coruscus caveo ex.",
"imageUrl": "https://picsum.photos/seed/place-1/1200/800",
"createdAt": "2022-01-01T05:46:47.405Z"
}