places
places
Page 3 of 7.
Overview
-
Old Town Square of Japan
landmark · Tokyo
★ 4.3 (818)
-
Heritage Museum of South Korea
museum · Seoul
★ 3.5 (1259)
-
Museum of Art of China
museum · Beijing
★ 3.9 (647)
-
Bistro 22 of China
restaurant · Beijing
★ 3.8 (1405)
-
Old Town Eats of India
restaurant · New Delhi
★ 4.1 (3410)
-
Surfer's Point of India
beach · New Delhi
★ 4.9 (1441)
-
Bistro 22 of Pakistan
restaurant · Islamabad
★ 4.8 (3919)
-
Founders Monument of Indonesia
landmark · Jakarta
★ 4.5 (1182)
-
Independence Plaza of Indonesia
landmark · Jakarta
★ 3.4 (811)
-
Heritage Museum of Thailand
museum · Bangkok
★ 3.3 (4911)
-
Golden Sands of Thailand
beach · Bangkok
★ 3.3 (2328)
-
Historic District of Thailand
other · Bangkok
★ 4.2 (4649)
-
Cathedral of Vietnam
landmark · Hanoi
★ 4.8 (4830)
-
Surfer's Point of Vietnam
beach · Hanoi
★ 3.4 (1156)
-
Sunset Point of Vietnam
viewpoint · Hanoi
★ 4.0 (2683)
-
Lakeside Loop of Philippines
hiking · Manila
★ 4.8 (1547)
-
Historic District of Philippines
other · Manila
★ 3.9 (1958)
-
Community Garden of Singapore
other · Singapore
★ 4.0 (1550)
-
Town Hall of Singapore
other · Singapore
★ 4.2 (3199)
-
Forest Park of Singapore
park · Singapore
★ 3.4 (3020)
-
Founders Monument of Malaysia
landmark · Kuala Lumpur
★ 3.5 (1153)
-
Coral Cove of Malaysia
beach · Kuala Lumpur
★ 4.4 (540)
-
Lakeside Park of United Arab Emirates
park · Abu Dhabi
★ 4.5 (901)
-
Sunset Point of United Arab Emirates
viewpoint · Abu Dhabi
★ 4.9 (2232)
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": 49,
"name": "Old Town Square of Japan",
"slug": "old-town-square-of-japan-49",
"kind": "landmark",
"city": "Tokyo",
"countryAlpha2": "JP",
"latitude": -49.219856,
"longitude": -90.302823,
"rating": 4.3,
"ratingCount": 818,
"description": "Creptio defetiscor ultio. Solutio sopor ventus defleo cura comedo. Coniuratio tristis possimus voluptatum.",
"imageUrl": "https://picsum.photos/seed/place-49/1200/800",
"createdAt": "2023-03-26T07:41:58.524Z"
},
{
"id": 50,
"name": "Heritage Museum of South Korea",
"slug": "heritage-museum-of-south-korea-50",
"kind": "museum",
"city": "Seoul",
"countryAlpha2": "KR",
"latitude": -11.620893,
"longitude": 15.552171,
"rating": 3.5,
"ratingCount": 1259,
"description": "Aqua tenetur cras tenetur uter ratione vacuus. Adimpleo credo cito cado defluo. Odio deporto pecco suffoco aliquam aliqua blandior vomer.",
"imageUrl": "https://picsum.photos/seed/place-50/1200/800",
"createdAt": "2023-05-08T16:53:05.602Z"
},
{
"id": 51,
"name": "Museum of Art of China",
"slug": "museum-of-art-of-china-51",
"kind": "museum",
"city": "Beijing",
"countryAlpha2": "CN",
"latitude": 62.586132,
"longitude": 51.958997,
"rating": 3.9,
"ratingCount": 647,
"description": "Templum aspicio optio quas cupiditate aedificium contra uredo. Adsidue statua demum bellum celo appono admoveo abundans. Subnecto unde pariatur usus.",
"imageUrl": "https://picsum.photos/seed/place-51/1200/800",
"createdAt": "2024-10-10T10:58:26.768Z"
}
],
"meta": {
"page": 3,
"limit": 24,
"total": 150,
"totalPages": 7
},
"links": {
"self": "/api/v1/places?page=3&limit=24",
"first": "/api/v1/places?page=1&limit=24",
"last": "/api/v1/places?page=7&limit=24",
"next": "/api/v1/places?page=4&limit=24",
"prev": "/api/v1/places?page=2&limit=24"
}
}