example-data.com

places / #140

Sunset Beach of Iceland

Sunset Beach of Iceland

beach · Reykjavík · ★ 3.7 (4393)

Component variants

curl -sS \
  "https://example-data.com/api/v1/places/140" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/places/140"
);
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/140"
);
const place = (await res.json()) as Place;
import requests

res = requests.get(
    "https://example-data.com/api/v1/places/140"
)
place = res.json()
{
  "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"
}
Draftbit