example-data.com

places / #148

Historic District of Japan

Historic District of Japan

other · Tokyo · ★ 4.6 (1974)

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/places/148"
)
place = res.json()
{
  "id": 148,
  "name": "Historic District of Japan",
  "slug": "historic-district-of-japan-148",
  "kind": "other",
  "city": "Tokyo",
  "countryAlpha2": "JP",
  "latitude": 33.779501,
  "longitude": -68.646958,
  "rating": 4.6,
  "ratingCount": 1974,
  "description": "Amplus varietas stillicidium tam cavus ager numquam. Abutor inflammatio charisma qui crepusculum. Suppono ara clarus totam cubitum ait congregatio porro suus celebrer.",
  "imageUrl": "https://picsum.photos/seed/place-148/1200/800",
  "createdAt": "2022-01-31T19:18:56.289Z"
}
Draftbit