example-data.com

places / #80

Old Town Square of South Africa

Old Town Square of South Africa

landmark · Pretoria · ★ 3.6 (4525)

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/places/80"
)
place = res.json()
{
  "id": 80,
  "name": "Old Town Square of South Africa",
  "slug": "old-town-square-of-south-africa-80",
  "kind": "landmark",
  "city": "Pretoria",
  "countryAlpha2": "ZA",
  "latitude": 64.787569,
  "longitude": 102.006068,
  "rating": 3.6,
  "ratingCount": 4525,
  "description": "Volo aedificium beatae thesis terminatio. Claro usitas auxilium aduro alter calculus trepide. Alii pecto sum.",
  "imageUrl": "https://picsum.photos/seed/place-80/1200/800",
  "createdAt": "2025-10-03T16:10:25.097Z"
}
Draftbit