example-data.com
Menu
Browse docs and collections

Overview

places / #139

Cup & Saucer of Iceland

Cup & Saucer of Iceland

cafe · Reykjavík · ★ 4.2 (4431)

Component variants

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/places/139" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/places/139"
);
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/139"
);
const place = (await res.json()) as Place;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/places/139"
)
place = res.json()

Response

{
  "id": 139,
  "name": "Cup & Saucer of Iceland",
  "slug": "cup-saucer-of-iceland-139",
  "kind": "cafe",
  "city": "Reykjavík",
  "countryAlpha2": "IS",
  "latitude": -2.829569,
  "longitude": -147.557429,
  "rating": 4.2,
  "ratingCount": 4431,
  "description": "Qui celebrer paulatim sit aeternus. Ultra currus comes cornu administratio civitas spero terror bonus. Depulso numquam bos capto suppono theatrum caput trepide.",
  "imageUrl": "https://picsum.photos/seed/place-139/1200/800",
  "createdAt": "2024-07-12T19:17:21.680Z"
}