hotels
hotels
Page 2 of 7.
Overview
-
Physical Suites Kaseyville
hotel · Kaseyville
★ 2.4 (110) · $729.38+/night
-
Legal Resort Vonside
hotel · Vonside
★ 3.3 (688) · $818.76+/night
-
Late Hotel Fort Amandaborough
hotel · Fort Amandaborough
★ 4.7 (3389) · $508.7+/night
-
Favorite Resort Fort Eliezer
hotel · Fort Eliezer
★ 2.1 (818) · $1841.81+/night
-
Overdue Resort West Kurt
hotel · West Kurt
★ 4.0 (3850) · $1612.58+/night
-
Awesome Lodge Krismouth
hotel · Krismouth
★ 2.3 (1909) · $587.28+/night
-
Tired Lodge New Flavioport
hotel · New Flavioport
★ 2.9 (3183) · $729.04+/night
-
Agitated Palace Mosciskiview
hotel · Mosciskiview
★ 4.4 (3031) · $1571.13+/night
-
Quarterly Palace Fort Teresaberg
hotel · Fort Teresaberg
★ 4.7 (2995) · $1515.45+/night
-
Meager Resort Lockmanfield
hotel · Lockmanfield
★ 4.1 (4600) · $1951.93+/night
-
Insignificant Hotel East Jillian
hotel · East Jillian
★ 3.3 (3882) · $631.44+/night
-
Severe Inn Brownfield
hotel · Brownfield
★ 2.1 (2141) · $426.14+/night
-
Authentic Suites Nadertown
hotel · Nadertown
★ 4.1 (4555) · $1285.1+/night
-
Gripping Inn North Brook
hotel · North Brook
★ 4.6 (4079) · $1843.6+/night
-
Exotic Palace Carmenburgh
hotel · Carmenburgh
★ 3.7 (390) · $1324.38+/night
-
Golden Suites Marcialand
hotel · Marcialand
★ 3.5 (3134) · $591.25+/night
-
Authorized Hotel Fort Jairo
hotel · Fort Jairo
★ 5.0 (672) · $544.42+/night
-
Dazzling Hotel Fort Janiya
hotel · Fort Janiya
★ 2.8 (4179) · $1013.23+/night
-
Quarterly Inn Fort Pansyfurt
hotel · Fort Pansyfurt
★ 2.1 (2479) · $90.25+/night
-
Those Inn Winston-Salem
hotel · Winston-Salem
★ 3.5 (4108) · $423.3+/night
-
Naughty Hotel Rochester Hills
hotel · Rochester Hills
★ 3.1 (2425) · $1504.75+/night
-
Insidious Palace East Janaestead
hotel · East Janaestead
★ 4.4 (1958) · $93.31+/night
-
Nutritious Resort Beryltown
hotel · Beryltown
★ 4.3 (4940) · $845.75+/night
-
Clear Resort West Cecelia
hotel · West Cecelia
★ 2.9 (2934) · $1768.69+/night
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/hotels?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/hotels.d.ts https://example-data.com/types/hotels.d.ts
import type { Hotel, ListEnvelope } from "./types/hotels";
const res = await fetch(
"https://example-data.com/api/v1/hotels?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Hotel>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 25,
"name": "Physical Suites Kaseyville",
"slug": "physical-suites-kaseyville-25",
"brand": "Ritz-Carlton",
"countryAlpha2": "IN",
"city": "Kaseyville",
"address": "4755 Gavin Cliff",
"latitude": -2.103434,
"longitude": 2.464975,
"starRating": 4,
"rating": 2.4,
"ratingCount": 110,
"priceFromPerNight": 729.38,
"currency": "THB",
"amenities": [
"pool",
"restaurant",
"business-center",
"beach-access"
],
"createdAt": "2024-12-29T13:08:21.744Z"
},
{
"id": 26,
"name": "Legal Resort Vonside",
"slug": "legal-resort-vonside-26",
"brand": "Best Western",
"countryAlpha2": "SE",
"city": "Vonside",
"address": "6310 Robb Flat",
"latitude": 48.450745,
"longitude": 7.056145,
"starRating": 2,
"rating": 3.3,
"ratingCount": 688,
"priceFromPerNight": 818.76,
"currency": "AUD",
"amenities": [
"laundry",
"business-center"
],
"createdAt": "2024-06-22T21:54:20.293Z"
},
{
"id": 27,
"name": "Late Hotel Fort Amandaborough",
"slug": "late-hotel-fort-amandaborough-27",
"brand": "Marriott",
"countryAlpha2": "CL",
"city": "Fort Amandaborough",
"address": "9756 Center Avenue",
"latitude": 41.932075,
"longitude": -106.520394,
"starRating": 5,
"rating": 4.7,
"ratingCount": 3389,
"priceFromPerNight": 508.7,
"currency": "AUD",
"amenities": [
"pet-friendly",
"room-service",
"business-center",
"casino",
"parking",
"laundry"
],
"createdAt": "2025-03-17T11:54:18.422Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 150,
"totalPages": 7
},
"links": {
"self": "/api/v1/hotels?page=2&limit=24",
"first": "/api/v1/hotels?page=1&limit=24",
"last": "/api/v1/hotels?page=7&limit=24",
"next": "/api/v1/hotels?page=3&limit=24",
"prev": "/api/v1/hotels?page=1&limit=24"
}
}