The Daily Grind of Colombia
cafe · Bogotá · ★ 3.7 (4729)
places / #11
cafe · Bogotá · ★ 3.7 (4729)
curl -sS \
"https://example-data.com/api/v1/places/11" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/places/11"
);
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/11"
);
const place = (await res.json()) as Place;import requests
res = requests.get(
"https://example-data.com/api/v1/places/11"
)
place = res.json() {
"id": 11,
"name": "The Daily Grind of Colombia",
"slug": "the-daily-grind-of-colombia-11",
"kind": "cafe",
"city": "Bogotá",
"countryAlpha2": "CO",
"latitude": -15.330931,
"longitude": -57.025717,
"rating": 3.7,
"ratingCount": 4729,
"description": "Minus viridis carus suadeo non. Arcus verbum comis armarium cometes bellicus patior totus tamen aer. Ullam audax cauda caelestis.",
"imageUrl": "https://picsum.photos/seed/place-11/1200/800",
"createdAt": "2025-02-15T09:42:42.068Z"
}