example-data.com

destinations

destinations

Page 2 of 4.

Marrakech

Marrakech

destination · ★ 94.0

Barcelona

Barcelona

destination · ★ 29.0

Tokyo

Tokyo

destination · ★ 74.0

Vienna

Vienna

destination · ★ 62.0

South Chyna

South Chyna

destination · ★ 32.0

Hackettville

Hackettville

destination · ★ 94.0

Showing first 6 of 24 on this page.

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

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

res = requests.get(
    "https://example-data.com/api/v1/destinations",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 25,
      "name": "Marrakech",
      "slug": "marrakech-25",
      "countryAlpha2": "MA",
      "description": "A vibrant destination known for its rich culture, stunning architecture, and world-class cuisine.",
      "imageUrl": "https://picsum.photos/seed/dest-25/800/600",
      "popularity": 94
    },
    {
      "id": 26,
      "name": "Barcelona",
      "slug": "barcelona-26",
      "countryAlpha2": "ES",
      "description": "Famous for its iconic landmarks, diverse neighborhoods, and buzzing nightlife.",
      "imageUrl": "https://picsum.photos/seed/dest-26/800/600",
      "popularity": 29
    },
    {
      "id": 27,
      "name": "Tokyo",
      "slug": "tokyo-27",
      "countryAlpha2": "JP",
      "description": "A must-visit for its natural wonders, welcoming locals, and unique character.",
      "imageUrl": "https://picsum.photos/seed/dest-27/800/600",
      "popularity": 74
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 80,
    "totalPages": 4
  },
  "links": {
    "self": "/api/v1/destinations?page=2",
    "next": "/api/v1/destinations?page=3",
    "prev": "/api/v1/destinations?page=1"
  }
}
Draftbit