example-data.com

places

places

Page 3 of 7.

Old Town Square of Japan

Old Town Square of Japan

landmark · Tokyo · ★ 4.3 (818)

Heritage Museum of South Korea

Heritage Museum of South Korea

museum · Seoul · ★ 3.5 (1259)

Museum of Art of China

Museum of Art of China

museum · Beijing · ★ 3.9 (647)

Bistro 22 of China

Bistro 22 of China

restaurant · Beijing · ★ 3.8 (1405)

Old Town Eats of India

Old Town Eats of India

restaurant · New Delhi · ★ 4.1 (3410)

Surfer's Point of India

Surfer's Point of India

beach · New Delhi · ★ 4.9 (1441)

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/places?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/places?limit=25"
);
const { data, meta } = await res.json();
import type { Place, ListEnvelope } from "https://example-data.com/types/places.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/places?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Place>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/places",
    params={"limit": 25},
)
data = res.json()
{
  "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",
    "next": "/api/v1/places?page=4",
    "prev": "/api/v1/places?page=2"
  }
}
Draftbit