example-data.com

places / #32

Lakeside Park of Greece

Lakeside Park of Greece

park · Athens · ★ 3.9 (4715)

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/places/32"
)
place = res.json()
{
  "id": 32,
  "name": "Lakeside Park of Greece",
  "slug": "lakeside-park-of-greece-32",
  "kind": "park",
  "city": "Athens",
  "countryAlpha2": "GR",
  "latitude": -24.063396,
  "longitude": -66.348428,
  "rating": 3.9,
  "ratingCount": 4715,
  "description": "Considero verto adflicto vinum. Adnuo thermae ustulo constans necessitatibus. Decumbo supplanto arca conor ter.",
  "imageUrl": "https://picsum.photos/seed/place-32/1200/800",
  "createdAt": "2021-08-18T04:46:05.050Z"
}
Draftbit