Travel booking
Hotel search, flight comparison, and itinerary management. Includes 118 countries, geocoded hotels, and seeded flight inventory.
Build a travel app in Draftbit →Showcase / Travel booking
Hotel search, flight comparison, and itinerary management. Includes 118 countries, geocoded hotels, and seeded flight inventory.
Build a travel app in Draftbit →Click into any collection to see its schema, sample records, and API reference.
Fetch hotels in the language of your choice.
curl -sS \
"https://example-data.com/api/v1/hotels?limit=25"const res = await fetch(
"https://example-data.com/api/v1/hotels?limit=25"
);
const { data, meta } = await res.json();import type { Hotel, ListEnvelope } from "https://example-data.com/types/hotels.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/hotels?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Hotel>;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels",
params={"limit": 25},
)
data = res.json()