example-data.com

places

places

Page 6 of 7.

Cultural Center of Netherlands

Cultural Center of Netherlands

other · Amsterdam · ★ 3.9 (2102)

Museum of Art of Belgium

Museum of Art of Belgium

museum · Brussels · ★ 3.8 (3254)

Summit Path of Spain

Summit Path of Spain

hiking · Madrid · ★ 4.6 (4815)

Science Center of Spain

Science Center of Spain

museum · Madrid · ★ 5.0 (3503)

Coral Cove of Spain

Coral Cove of Spain

beach · Madrid · ★ 3.1 (1178)

Forest Park of Italy

Forest Park of Italy

park · Rome · ★ 3.9 (3688)

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": 121,
      "name": "Cultural Center of Netherlands",
      "slug": "cultural-center-of-netherlands-121",
      "kind": "other",
      "city": "Amsterdam",
      "countryAlpha2": "NL",
      "latitude": 33.091744,
      "longitude": -49.766433,
      "rating": 3.9,
      "ratingCount": 2102,
      "description": "Utique contego nostrum corpus. Vulgivagus officia degusto spectaculum usitas theca coniuratio utor universe omnis. Dolores conduco via eligendi terebro canto.",
      "imageUrl": "https://picsum.photos/seed/place-121/1200/800",
      "createdAt": "2021-11-18T13:30:50.574Z"
    },
    {
      "id": 122,
      "name": "Museum of Art of Belgium",
      "slug": "museum-of-art-of-belgium-122",
      "kind": "museum",
      "city": "Brussels",
      "countryAlpha2": "BE",
      "latitude": -53.524452,
      "longitude": 51.709669,
      "rating": 3.8,
      "ratingCount": 3254,
      "description": "Conculco tepesco ciminatio. Depulso triumphus turbo. Velociter defleo tamen quas una tego venustas amplitudo despecto quo.",
      "imageUrl": "https://picsum.photos/seed/place-122/1200/800",
      "createdAt": "2023-12-18T08:39:36.072Z"
    },
    {
      "id": 123,
      "name": "Summit Path of Spain",
      "slug": "summit-path-of-spain-123",
      "kind": "hiking",
      "city": "Madrid",
      "countryAlpha2": "ES",
      "latitude": -19.705955,
      "longitude": -29.05614,
      "rating": 4.6,
      "ratingCount": 4815,
      "description": "Apto capio sordeo inflammatio deleo at volva aptus vesica. Eius praesentium utpote vitium. Contego creta aveho.",
      "imageUrl": "https://picsum.photos/seed/place-123/1200/800",
      "createdAt": "2022-05-13T01:08:07.701Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 150,
    "totalPages": 7
  },
  "links": {
    "self": "/api/v1/places?page=6",
    "next": "/api/v1/places?page=7",
    "prev": "/api/v1/places?page=5"
  }
}
Draftbit