Cup & Saucer of South Korea
cafe · Seoul · ★ 4.9 (1905)
Overview
places / #149
cafe · Seoul · ★ 4.9 (1905)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/places/149" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/places/149" ); 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/149"
);
const place = (await res.json()) as Place; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/places/149"
)
place = res.json() Response
{
"id": 149,
"name": "Cup & Saucer of South Korea",
"slug": "cup-saucer-of-south-korea-149",
"kind": "cafe",
"city": "Seoul",
"countryAlpha2": "KR",
"latitude": 46.964423,
"longitude": 171.433272,
"rating": 4.9,
"ratingCount": 1905,
"description": "Debeo terebro sufficio cogito conitor. Vitium voveo communis caecus quos dens tum. Adsuesco deripio ars reprehenderit.",
"imageUrl": "https://picsum.photos/seed/place-149/1200/800",
"createdAt": "2025-06-02T15:10:10.338Z"
}