example-data.com

destinations

destinations

Page 3 of 4.

Sayreville

Sayreville

destination · ★ 85.0

Hicksville

Hicksville

destination · ★ 31.0

Ladariusburgh

Ladariusburgh

destination · ★ 21.0

Fort Amina

Fort Amina

destination · ★ 21.0

Fort Elizabeth

Fort Elizabeth

destination · ★ 89.0

Port Hughton

Port Hughton

destination · ★ 32.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": 49,
      "name": "Sayreville",
      "slug": "sayreville-49",
      "countryAlpha2": "SA",
      "description": "Explore breathtaking landscapes, ancient history, and warm hospitality.",
      "imageUrl": "https://picsum.photos/seed/dest-49/800/600",
      "popularity": 85
    },
    {
      "id": 50,
      "name": "Hicksville",
      "slug": "hicksville-50",
      "countryAlpha2": "PL",
      "description": "Where history meets modernity, offering travelers an unparalleled urban adventure.",
      "imageUrl": "https://picsum.photos/seed/dest-50/800/600",
      "popularity": 31
    },
    {
      "id": 51,
      "name": "Ladariusburgh",
      "slug": "ladariusburgh-51",
      "countryAlpha2": "CA",
      "description": "Discover sun-drenched beaches, lush scenery, and unforgettable experiences.",
      "imageUrl": "https://picsum.photos/seed/dest-51/800/600",
      "popularity": 21
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 80,
    "totalPages": 4
  },
  "links": {
    "self": "/api/v1/destinations?page=3",
    "next": "/api/v1/destinations?page=4",
    "prev": "/api/v1/destinations?page=2"
  }
}
Draftbit