Cascade Trail of Austria
hiking · Vienna · ★ 4.4 (4376)
places / #145
hiking · Vienna · ★ 4.4 (4376)
curl -sS \
"https://example-data.com/api/v1/places/145" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/places/145"
);
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/145"
);
const place = (await res.json()) as Place;import requests
res = requests.get(
"https://example-data.com/api/v1/places/145"
)
place = res.json() {
"id": 145,
"name": "Cascade Trail of Austria",
"slug": "cascade-trail-of-austria-145",
"kind": "hiking",
"city": "Vienna",
"countryAlpha2": "AT",
"latitude": 2.89397,
"longitude": 106.114704,
"rating": 4.4,
"ratingCount": 4376,
"description": "Vilitas tredecim congregatio. Civis desipio esse tamen. Eos totidem creptio claudeo terreo uxor alius.",
"imageUrl": "https://picsum.photos/seed/place-145/1200/800",
"createdAt": "2023-09-07T09:30:29.952Z"
}