example-data.com

places / #8

Central Park of Brazil

Central Park of Brazil

park · Brasília · ★ 4.7 (284)

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/places/8"
)
place = res.json()
{
  "id": 8,
  "name": "Central Park of Brazil",
  "slug": "central-park-of-brazil-8",
  "kind": "park",
  "city": "Brasília",
  "countryAlpha2": "BR",
  "latitude": -35.204551,
  "longitude": 140.490004,
  "rating": 4.7,
  "ratingCount": 284,
  "description": "Vulgus cubitum utroque sub comparo dedecor contra deputo quasi carbo. Totam villa tergeo deputo civis saepe. Correptius venio surculus.",
  "imageUrl": "https://picsum.photos/seed/place-8/1200/800",
  "createdAt": "2021-07-10T04:03:52.678Z"
}
Draftbit