Panorama Hill of Argentina
viewpoint · Buenos Aires · ★ 3.3 (3963)
places / #9
viewpoint · Buenos Aires · ★ 3.3 (3963)
curl -sS \
"https://example-data.com/api/v1/places/9" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/places/9"
);
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/9"
);
const place = (await res.json()) as Place;import requests
res = requests.get(
"https://example-data.com/api/v1/places/9"
)
place = res.json() {
"id": 9,
"name": "Panorama Hill of Argentina",
"slug": "panorama-hill-of-argentina-9",
"kind": "viewpoint",
"city": "Buenos Aires",
"countryAlpha2": "AR",
"latitude": -41.975612,
"longitude": 156.92516,
"rating": 3.3,
"ratingCount": 3963,
"description": "Coniecto speciosus amplus alii. Volup adopto speciosus thesis ducimus tam tenuis voluptatem a carpo. Victoria voluptatum aeger totidem.",
"imageUrl": "https://picsum.photos/seed/place-9/1200/800",
"createdAt": "2023-01-28T14:07:14.181Z"
}