example-data.com

places / #65

Historic District of Philippines

Historic District of Philippines

other · Manila · ★ 3.9 (1958)

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/places/65"
)
place = res.json()
{
  "id": 65,
  "name": "Historic District of Philippines",
  "slug": "historic-district-of-philippines-65",
  "kind": "other",
  "city": "Manila",
  "countryAlpha2": "PH",
  "latitude": 45.608343,
  "longitude": -108.039686,
  "rating": 3.9,
  "ratingCount": 1958,
  "description": "Aequitas tripudio ager. Tricesimus decens supra ex valens. Textor vito ventito combibo claustrum adsuesco tribuo vomer bellum.",
  "imageUrl": "https://picsum.photos/seed/place-65/1200/800",
  "createdAt": "2021-08-29T15:29:40.165Z"
}
Draftbit