example-data.com

places / #110

Cultural Center of United Kingdom

Cultural Center of United Kingdom

other · London · ★ 4.9 (2540)

Component variants

curl -sS \
  "https://example-data.com/api/v1/places/110" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/places/110"
);
const place = await res.json();
import type { Place } from "https://example-data.com/types/places.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/places/110"
);
const place = (await res.json()) as Place;
import requests

res = requests.get(
    "https://example-data.com/api/v1/places/110"
)
place = res.json()
{
  "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"
}
Draftbit