Cultural Center of United Kingdom
other · London · ★ 4.9 (2540)
Overview
places / #110
other · London · ★ 4.9 (2540)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/places/110" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/places/110" ); 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/110"
);
const place = (await res.json()) as Place; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/places/110"
)
place = res.json() Response
{
"id": 110,
"name": "Cultural Center of United Kingdom",
"slug": "cultural-center-of-united-kingdom-110",
"kind": "other",
"city": "London",
"countryAlpha2": "GB",
"latitude": -36.662959,
"longitude": 143.19527,
"rating": 4.9,
"ratingCount": 2540,
"description": "Cum dolores aeternus tot stips torqueo verumtamen deficio tendo. Caelestis aro tamdiu minus aegre. Tabgo molestiae conculco.",
"imageUrl": "https://picsum.photos/seed/place-110/1200/800",
"createdAt": "2026-05-01T12:56:32.009Z"
}