Historic District of Philippines
other · Manila · ★ 3.9 (1958)
Overview
places / #65
other · Manila · ★ 3.9 (1958)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/places/65" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/places/65" ); 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/65"
);
const place = (await res.json()) as Place; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/places/65"
)
place = res.json() Response
{
"id": 65,
"name": "Historic District of Philippines",
"slug": "historic-district-of-philippines-65",
"kind": "other",
"city": "Manila",
"countryAlpha2": "PH",
"latitude": 45.608343,
"longitude": -108.039686,
"rating": 3.9,
"ratingCount": 1958,
"description": "Aequitas tripudio ager. Tricesimus decens supra ex valens. Textor vito ventito combibo claustrum adsuesco tribuo vomer bellum.",
"imageUrl": "https://picsum.photos/seed/place-65/1200/800",
"createdAt": "2021-08-29T15:29:40.165Z"
}