Cultural Center of Poland
other · Warsaw · ★ 3.2 (4958)
places / #143
other · Warsaw · ★ 3.2 (4958)
curl -sS \
"https://example-data.com/api/v1/places/143" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/places/143"
);
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/143"
);
const place = (await res.json()) as Place;import requests
res = requests.get(
"https://example-data.com/api/v1/places/143"
)
place = res.json() {
"id": 143,
"name": "Cultural Center of Poland",
"slug": "cultural-center-of-poland-143",
"kind": "other",
"city": "Warsaw",
"countryAlpha2": "PL",
"latitude": 1.308593,
"longitude": 17.407653,
"rating": 3.2,
"ratingCount": 4958,
"description": "Subito sapiente tumultus degenero complectus tabgo summisse cauda compono. Deficio turba sublime cenaculum supellex. Cras anser delectus averto spero virga communis assentator.",
"imageUrl": "https://picsum.photos/seed/place-143/1200/800",
"createdAt": "2025-11-20T09:15:07.344Z"
}