example-data.com

places / #1

Historic District of United States

Historic District of United States

other · Washington, D.C. · ★ 4.7 (1818)

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/places/1"
)
place = res.json()
{
  "id": 1,
  "name": "Historic District of United States",
  "slug": "historic-district-of-united-states-1",
  "kind": "other",
  "city": "Washington, D.C.",
  "countryAlpha2": "US",
  "latitude": -35.576761,
  "longitude": 24.092559,
  "rating": 4.7,
  "ratingCount": 1818,
  "description": "Ars apto acidus accusantium aliquam vestrum hic cibo ager volup. Coaegresco vacuus vado sustineo clam compono qui ancilla. Defessus cometes aurum deporto coaegresco coruscus caveo ex.",
  "imageUrl": "https://picsum.photos/seed/place-1/1200/800",
  "createdAt": "2022-01-01T05:46:47.405Z"
}
Draftbit