Sunset Beach of Iceland
beach · Reykjavík · ★ 3.7 (4393)
Overview
places / #140
beach · Reykjavík · ★ 3.7 (4393)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/places/140" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/places/140" ); 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/140"
);
const place = (await res.json()) as Place; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/places/140"
)
place = res.json() Response
{
"id": 140,
"name": "Sunset Beach of Iceland",
"slug": "sunset-beach-of-iceland-140",
"kind": "beach",
"city": "Reykjavík",
"countryAlpha2": "IS",
"latitude": -42.708386,
"longitude": 97.503484,
"rating": 3.7,
"ratingCount": 4393,
"description": "Decet thesis vociferor campana. Annus atque tabesco aegrotatio artificiose facere. Alo calamitas officia.",
"imageUrl": "https://picsum.photos/seed/place-140/1200/800",
"createdAt": "2024-09-05T21:04:10.689Z"
}