Espresso Lane of South Africa
cafe · Pretoria · ★ 3.6 (1550)
places / #79
cafe · Pretoria · ★ 3.6 (1550)
curl -sS \
"https://example-data.com/api/v1/places/79" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/places/79"
);
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/79"
);
const place = (await res.json()) as Place;import requests
res = requests.get(
"https://example-data.com/api/v1/places/79"
)
place = res.json() {
"id": 79,
"name": "Espresso Lane of South Africa",
"slug": "espresso-lane-of-south-africa-79",
"kind": "cafe",
"city": "Pretoria",
"countryAlpha2": "ZA",
"latitude": -47.15203,
"longitude": -20.811004,
"rating": 3.6,
"ratingCount": 1550,
"description": "Volup eius amoveo ustilo antepono alii vinco debeo crapula crapula. Torrens nihil tandem. Accommodo corroboro calamitas.",
"imageUrl": "https://picsum.photos/seed/place-79/1200/800",
"createdAt": "2024-07-01T03:35:38.509Z"
}