Cathedral of Vietnam
landmark · Hanoi · ★ 4.8 (4830)
places / #61
landmark · Hanoi · ★ 4.8 (4830)
curl -sS \
"https://example-data.com/api/v1/places/61" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/places/61"
);
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/61"
);
const place = (await res.json()) as Place;import requests
res = requests.get(
"https://example-data.com/api/v1/places/61"
)
place = res.json() {
"id": 61,
"name": "Cathedral of Vietnam",
"slug": "cathedral-of-vietnam-61",
"kind": "landmark",
"city": "Hanoi",
"countryAlpha2": "VN",
"latitude": -39.661277,
"longitude": -41.689596,
"rating": 4.8,
"ratingCount": 4830,
"description": "Antiquus textor supplanto doloribus velut nisi varietas caritas vilicus dedecor. Defaeco vitiosus trans dignissimos suggero taceo veritas. Thymbra corroboro tutamen ocer velociter contigo adficio viridis cotidie ager.",
"imageUrl": "https://picsum.photos/seed/place-61/1200/800",
"createdAt": "2022-08-08T18:09:05.975Z"
}