example-data.com

places / #29

Vista Lookout of Italy

Vista Lookout of Italy

viewpoint · Rome · ★ 3.9 (3763)

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/places/29"
)
place = res.json()
{
  "id": 29,
  "name": "Vista Lookout of Italy",
  "slug": "vista-lookout-of-italy-29",
  "kind": "viewpoint",
  "city": "Rome",
  "countryAlpha2": "IT",
  "latitude": -46.971368,
  "longitude": -51.155474,
  "rating": 3.9,
  "ratingCount": 3763,
  "description": "Vero adsidue confero utique excepturi. Aspernatur corroboro timor. Surculus defleo deleniti aduro.",
  "imageUrl": "https://picsum.photos/seed/place-29/1200/800",
  "createdAt": "2021-12-30T08:33:39.612Z"
}
Draftbit