places
places
Page 7 of 7.
Overview
-
Cascade Trail of Austria
hiking · Vienna
★ 4.4 (4376)
-
Designer District of Austria
shopping · Vienna
★ 3.3 (1957)
-
Lakeside Loop of Japan
hiking · Tokyo
★ 4.0 (3721)
-
Historic District of Japan
other · Tokyo
★ 4.6 (1974)
-
Cup & Saucer of South Korea
cafe · Seoul
★ 4.9 (1905)
-
Surfer's Point of South Korea
beach · Seoul
★ 4.7 (987)
Request
curl example
curl -sS \ "https://example-data.com/api/v1/places?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/places?limit=25"
);
const { data, meta } = 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, ListEnvelope } from "./types/places";
const res = await fetch(
"https://example-data.com/api/v1/places?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Place>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/places",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 145,
"name": "Cascade Trail of Austria",
"slug": "cascade-trail-of-austria-145",
"kind": "hiking",
"city": "Vienna",
"countryAlpha2": "AT",
"latitude": 2.89397,
"longitude": 106.114704,
"rating": 4.4,
"ratingCount": 4376,
"description": "Vilitas tredecim congregatio. Civis desipio esse tamen. Eos totidem creptio claudeo terreo uxor alius.",
"imageUrl": "https://picsum.photos/seed/place-145/1200/800",
"createdAt": "2023-09-07T09:30:29.952Z"
},
{
"id": 146,
"name": "Designer District of Austria",
"slug": "designer-district-of-austria-146",
"kind": "shopping",
"city": "Vienna",
"countryAlpha2": "AT",
"latitude": 43.795073,
"longitude": 132.431939,
"rating": 3.3,
"ratingCount": 1957,
"description": "Canto quae asporto utroque velut toties sulum. Suadeo aestivus demergo damno cornu tergiversatio spiculum defero basium creo. Varietas concedo unde solium theatrum via ventus claro adeo depereo.",
"imageUrl": "https://picsum.photos/seed/place-146/1200/800",
"createdAt": "2025-08-13T01:52:44.217Z"
},
{
"id": 147,
"name": "Lakeside Loop of Japan",
"slug": "lakeside-loop-of-japan-147",
"kind": "hiking",
"city": "Tokyo",
"countryAlpha2": "JP",
"latitude": -23.05112,
"longitude": 75.935321,
"rating": 4,
"ratingCount": 3721,
"description": "Super amissio unus vestrum cogito vilitas dolor deprimo textus. Tutis celer depono truculenter. Territo angustus sodalitas claustrum.",
"imageUrl": "https://picsum.photos/seed/place-147/1200/800",
"createdAt": "2023-01-24T10:29:40.320Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 150,
"totalPages": 7
},
"links": {
"self": "/api/v1/places?page=7&limit=24",
"first": "/api/v1/places?page=1&limit=24",
"last": "/api/v1/places?page=7&limit=24",
"next": null,
"prev": "/api/v1/places?page=6&limit=24"
}
}