destinations
destinations
Browse 80 destinations records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.
- Singapore · ★ 98.0
- Paris · ★ 92.0
- Istanbul · ★ 85.0
- Berlin · ★ 55.0
- Buenos Aires · ★ 12.0
- Miami · ★ 25.0
- Sydney · ★ 91.0
- Chicago · ★ 44.0
- Bali · ★ 10.0
- Cape Town · ★ 50.0
- London · ★ 88.0
- Rome · ★ 12.0
- Mexico City · ★ 31.0
- Seoul · ★ 74.0
- Toronto · ★ 26.0
- Kyoto · ★ 26.0
- New York · ★ 48.0
- Lisbon · ★ 39.0
- San Francisco · ★ 95.0
- Dubai · ★ 16.0
- Los Angeles · ★ 64.0
- Athens · ★ 71.0
- Bangkok · ★ 10.0
- Amsterdam · ★ 46.0
-
Singapore
destination
★ 98.0
-
Paris
destination
★ 92.0
-
Istanbul
destination
★ 85.0
-
Berlin
destination
★ 55.0
-
Buenos Aires
destination
★ 12.0
-
Miami
destination
★ 25.0
-
Sydney
destination
★ 91.0
-
Chicago
destination
★ 44.0
-
Bali
destination
★ 10.0
-
Cape Town
destination
★ 50.0
-
London
destination
★ 88.0
-
Rome
destination
★ 12.0
-
Mexico City
destination
★ 31.0
-
Seoul
destination
★ 74.0
-
Toronto
destination
★ 26.0
-
Kyoto
destination
★ 26.0
-
New York
destination
★ 48.0
-
Lisbon
destination
★ 39.0
-
San Francisco
destination
★ 95.0
-
Dubai
destination
★ 16.0
-
Los Angeles
destination
★ 64.0
-
Athens
destination
★ 71.0
-
Bangkok
destination
★ 10.0
-
Amsterdam
destination
★ 46.0
Singapore
destination · ★ 98.0
Paris
destination · ★ 92.0
Istanbul
destination · ★ 85.0
Berlin
destination · ★ 55.0
Buenos Aires
destination · ★ 12.0
Miami
destination · ★ 25.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": 1,
"name": "Singapore",
"slug": "singapore-1",
"countryAlpha2": "SG",
"description": "A must-visit for its natural wonders, welcoming locals, and unique character.",
"imageUrl": "https://picsum.photos/seed/dest-1/800/600",
"popularity": 98
},
{
"id": 2,
"name": "Paris",
"slug": "paris-2",
"countryAlpha2": "FR",
"description": "A vibrant destination known for its rich culture, stunning architecture, and world-class cuisine.",
"imageUrl": "https://picsum.photos/seed/dest-2/800/600",
"popularity": 92
},
{
"id": 3,
"name": "Istanbul",
"slug": "istanbul-3",
"countryAlpha2": "TR",
"description": "A must-visit for its natural wonders, welcoming locals, and unique character.",
"imageUrl": "https://picsum.photos/seed/dest-3/800/600",
"popularity": 85
}
],
"meta": {
"page": 1,
"limit": 25,
"total": 80,
"totalPages": 4
},
"links": {
"self": "/api/v1/destinations?page=1",
"first": "/api/v1/destinations?page=1",
"last": "/api/v1/destinations?page=4",
"next": "/api/v1/destinations?page=2",
"prev": null
}
}