example-data.com

places / #64

Lakeside Loop of Philippines

Lakeside Loop of Philippines

hiking · Manila · ★ 4.8 (1547)

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/places/64"
)
place = res.json()
{
  "id": 64,
  "name": "Lakeside Loop of Philippines",
  "slug": "lakeside-loop-of-philippines-64",
  "kind": "hiking",
  "city": "Manila",
  "countryAlpha2": "PH",
  "latitude": 22.837858,
  "longitude": -79.000204,
  "rating": 4.8,
  "ratingCount": 1547,
  "description": "Decet aliqua strenuus ter stillicidium voluptatibus virgo clementia. Aegre adhuc tersus nesciunt strenuus venustas adstringo amplitudo nobis. Denego deficio aestivus tertius deficio depereo paens toties.",
  "imageUrl": "https://picsum.photos/seed/place-64/1200/800",
  "createdAt": "2022-03-25T18:19:23.194Z"
}
Draftbit