places
places
Page 5 of 7.
Overview
-
Old Town Eats of United States
restaurant · Washington, D.C.
★ 4.1 (3019)
-
Market Square of Canada
shopping · Ottawa
★ 4.6 (3021)
-
Crescent Bay of Canada
beach · Ottawa
★ 4.4 (4057)
-
Heritage Museum of Mexico
museum · Mexico City
★ 3.3 (1957)
-
Heritage Park of Brazil
park · Brasília
★ 4.6 (1583)
-
Maritime Museum of Brazil
museum · Brasília
★ 3.7 (2951)
-
Natural History Museum of Brazil
museum · Brasília
★ 4.3 (4428)
-
Pine Ridge Trail of Argentina
hiking · Buenos Aires
★ 3.7 (2232)
-
Pine Ridge Trail of Chile
hiking · Santiago
★ 3.2 (2444)
-
The Daily Grind of Colombia
cafe · Bogotá
★ 4.9 (18)
-
Espresso Lane of Colombia
cafe · Bogotá
★ 4.7 (122)
-
Town Hall of Peru
other · Lima
★ 4.5 (2207)
-
Riverside Grill of Peru
restaurant · Lima
★ 4.9 (2539)
-
Cultural Center of United Kingdom
other · London
★ 4.9 (2540)
-
Panorama Hill of Ireland
viewpoint · Dublin
★ 3.4 (3239)
-
Heritage Museum of Ireland
museum · Dublin
★ 3.2 (2764)
-
Bean There of Ireland
cafe · Dublin
★ 4.5 (2309)
-
Market Square of Germany
shopping · Berlin
★ 4.1 (198)
-
Cascade Trail of Germany
hiking · Berlin
★ 4.2 (2320)
-
Riverside Park of Germany
park · Berlin
★ 4.9 (2294)
-
Forest Park of France
park · Paris
★ 4.9 (1531)
-
Pine Ridge Trail of France
hiking · Paris
★ 4.6 (4944)
-
Eagle's Nest of Netherlands
viewpoint · Amsterdam
★ 3.7 (1004)
-
Designer District of Netherlands
shopping · Amsterdam
★ 3.1 (1842)
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": 97,
"name": "Old Town Eats of United States",
"slug": "old-town-eats-of-united-states-97",
"kind": "restaurant",
"city": "Washington, D.C.",
"countryAlpha2": "US",
"latitude": 64.997367,
"longitude": 82.781081,
"rating": 4.1,
"ratingCount": 3019,
"description": "Temperantia delectatio vobis adfectus pauper absorbeo sint. Verus cupressus temptatio denuo labore. Cupressus clementia terga.",
"imageUrl": "https://picsum.photos/seed/place-97/1200/800",
"createdAt": "2022-07-25T16:17:07.247Z"
},
{
"id": 98,
"name": "Market Square of Canada",
"slug": "market-square-of-canada-98",
"kind": "shopping",
"city": "Ottawa",
"countryAlpha2": "CA",
"latitude": 41.845397,
"longitude": -87.866883,
"rating": 4.6,
"ratingCount": 3021,
"description": "Crapula valetudo amoveo usus tui cras. Corona terra utpote approbo cibus valeo ars ver centum decretum. Ante versus suasoria recusandae tenax vetus aspicio.",
"imageUrl": "https://picsum.photos/seed/place-98/1200/800",
"createdAt": "2024-09-01T13:00:13.650Z"
},
{
"id": 99,
"name": "Crescent Bay of Canada",
"slug": "crescent-bay-of-canada-99",
"kind": "beach",
"city": "Ottawa",
"countryAlpha2": "CA",
"latitude": 60.782586,
"longitude": -157.275288,
"rating": 4.4,
"ratingCount": 4057,
"description": "Vigor spargo spes urbanus demens utroque modi officia solio. Arto vero via decretum suadeo. Vinco tristis culpo deficio volup stella.",
"imageUrl": "https://picsum.photos/seed/place-99/1200/800",
"createdAt": "2025-06-01T04:40:56.713Z"
}
],
"meta": {
"page": 5,
"limit": 24,
"total": 150,
"totalPages": 7
},
"links": {
"self": "/api/v1/places?page=5&limit=24",
"first": "/api/v1/places?page=1&limit=24",
"last": "/api/v1/places?page=7&limit=24",
"next": "/api/v1/places?page=6&limit=24",
"prev": "/api/v1/places?page=4&limit=24"
}
}