example-data.com

places / #105

Pine Ridge Trail of Chile

Pine Ridge Trail of Chile

hiking · Santiago · ★ 3.2 (2444)

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/places/105"
)
place = res.json()
{
  "id": 105,
  "name": "Pine Ridge Trail of Chile",
  "slug": "pine-ridge-trail-of-chile-105",
  "kind": "hiking",
  "city": "Santiago",
  "countryAlpha2": "CL",
  "latitude": 20.789343,
  "longitude": 163.921495,
  "rating": 3.2,
  "ratingCount": 2444,
  "description": "Socius tenax videlicet nulla paens et verecundia cur harum. Pecto cohibeo decipio necessitatibus ultra argumentum patrocinor trans illo viriliter. Creo adaugeo supra tero tepidus depromo.",
  "imageUrl": "https://picsum.photos/seed/place-105/1200/800",
  "createdAt": "2026-02-09T03:04:48.437Z"
}
Draftbit