example-data.com

places / #85

Historic District of Kenya

Historic District of Kenya

other · Nairobi · ★ 4.3 (4476)

Component variants

curl -sS \
  "https://example-data.com/api/v1/places/85" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/places/85"
);
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/85"
);
const place = (await res.json()) as Place;
import requests

res = requests.get(
    "https://example-data.com/api/v1/places/85"
)
place = res.json()
{
  "id": 85,
  "name": "Historic District of Kenya",
  "slug": "historic-district-of-kenya-85",
  "kind": "other",
  "city": "Nairobi",
  "countryAlpha2": "KE",
  "latitude": 51.924359,
  "longitude": 113.729149,
  "rating": 4.3,
  "ratingCount": 4476,
  "description": "Terror testimonium ea correptius. Comis clementia labore vorago conventus tredecim demoror. Thorax decretum alias abstergo advenio stabilis caelestis pax.",
  "imageUrl": "https://picsum.photos/seed/place-85/1200/800",
  "createdAt": "2023-10-22T20:30:16.001Z"
}
Draftbit