Panorama Hill of Egypt
viewpoint · Cairo · ★ 4.9 (1890)
Overview
places / #78
viewpoint · Cairo · ★ 4.9 (1890)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/places/78" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/places/78" ); const place = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/places.d.ts https://example-data.com/types/places.d.ts
import type { Place } from "./types/places";
const res = await fetch(
"https://example-data.com/api/v1/places/78"
);
const place = (await res.json()) as Place; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/places/78"
)
place = res.json() Response
{
"id": 78,
"name": "Panorama Hill of Egypt",
"slug": "panorama-hill-of-egypt-78",
"kind": "viewpoint",
"city": "Cairo",
"countryAlpha2": "EG",
"latitude": -32.103183,
"longitude": -161.879589,
"rating": 4.9,
"ratingCount": 1890,
"description": "Crepusculum sto quas aegre terga. Apud statim decens textor attero tabgo volutabrum pauci vulpes. Tandem sub despecto totus.",
"imageUrl": "https://picsum.photos/seed/place-78/1200/800",
"createdAt": "2025-08-30T23:11:35.212Z"
}