hotels
hotels
Page 5 of 7.
Overview
-
Dramatic Lodge West Adelia
hotel · West Adelia
★ 3.5 (3669) · $85.74+/night
-
Grumpy Resort Riverview
hotel · Riverview
★ 4.3 (3681) · $121.19+/night
-
Grouchy Lodge Laredo
hotel · Laredo
★ 4.2 (1617) · $1754.98+/night
-
Interesting Suites East Daron
hotel · East Daron
★ 2.2 (4531) · $1508.38+/night
-
Happy-go-lucky Suites Calebborough
hotel · Calebborough
★ 3.5 (2429) · $740.86+/night
-
Untried Palace Tempe
hotel · Tempe
★ 2.5 (2674) · $1221.87+/night
-
Immediate Palace New Khalid
hotel · New Khalid
★ 4.8 (168) · $1667.81+/night
-
Snarling Inn Fort Esmeraldafurt
hotel · Fort Esmeraldafurt
★ 2.5 (3102) · $1313.06+/night
-
Purple Lodge Lake Rosella
hotel · Lake Rosella
★ 2.3 (2268) · $190.3+/night
-
Tall Suites Charlottestad
hotel · Charlottestad
★ 3.4 (4412) · $247.97+/night
-
Dense Hotel Simport
hotel · Simport
★ 3.9 (431) · $115.88+/night
-
Circular Palace East Kennedifort
hotel · East Kennedifort
★ 3.5 (4585) · $1226.29+/night
-
Exotic Palace Denesikland
hotel · Denesikland
★ 4.4 (3102) · $1843.39+/night
-
Polite Palace North Americabury
hotel · North Americabury
★ 4.2 (3624) · $827.95+/night
-
Posh Hotel East Berniece
hotel · East Berniece
★ 3.5 (4223) · $1371.05+/night
-
Unripe Palace Moenshire
hotel · Moenshire
★ 3.5 (3602) · $1973.33+/night
-
Hopeful Palace Erie
hotel · Erie
★ 2.5 (3273) · $1730.17+/night
-
Thin Lodge Lake Cydney
hotel · Lake Cydney
★ 4.5 (383) · $1087.36+/night
-
Our Suites Kaleyburgh
hotel · Kaleyburgh
★ 4.0 (2789) · $1788.33+/night
-
Marvelous Resort Bartellberg
hotel · Bartellberg
★ 3.7 (2228) · $846.15+/night
-
Ugly Suites Port Candidoboro
hotel · Port Candidoboro
★ 4.0 (4653) · $81.17+/night
-
Blond Suites Rohanfort
hotel · Rohanfort
★ 3.4 (2002) · $1286.98+/night
-
Gracious Resort Novi
hotel · Novi
★ 3.9 (680) · $856.83+/night
-
Wiggly Lodge Schusterhaven
hotel · Schusterhaven
★ 4.0 (3301) · $548.46+/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": 97,
"name": "Dramatic Lodge West Adelia",
"slug": "dramatic-lodge-west-adelia-97",
"brand": "Hyatt",
"countryAlpha2": "FR",
"city": "West Adelia",
"address": "4143 E Pine Street",
"latitude": 7.881842,
"longitude": 90.377236,
"starRating": 3,
"rating": 3.5,
"ratingCount": 3669,
"priceFromPerNight": 85.74,
"currency": "GBP",
"amenities": [
"laundry",
"restaurant",
"parking",
"spa",
"beach-access",
"casino",
"room-service",
"wifi"
],
"createdAt": "2024-07-12T19:19:11.988Z"
},
{
"id": 98,
"name": "Grumpy Resort Riverview",
"slug": "grumpy-resort-riverview-98",
"brand": "Best Western",
"countryAlpha2": "FR",
"city": "Riverview",
"address": "9772 Rosendo Canyon",
"latitude": -31.514637,
"longitude": -164.811126,
"starRating": 3,
"rating": 4.3,
"ratingCount": 3681,
"priceFromPerNight": 121.19,
"currency": "SGD",
"amenities": [
"beach-access",
"concierge",
"restaurant"
],
"createdAt": "2024-06-05T03:26:08.548Z"
},
{
"id": 99,
"name": "Grouchy Lodge Laredo",
"slug": "grouchy-lodge-laredo-99",
"brand": null,
"countryAlpha2": "MY",
"city": "Laredo",
"address": "3914 Ocie Loop",
"latitude": 34.365313,
"longitude": 4.321702,
"starRating": 5,
"rating": 4.2,
"ratingCount": 1617,
"priceFromPerNight": 1754.98,
"currency": "SGD",
"amenities": [
"casino",
"room-service",
"beach-access",
"airport-shuttle",
"restaurant",
"gym",
"parking"
],
"createdAt": "2024-05-26T11:23:22.046Z"
}
],
"meta": {
"page": 5,
"limit": 24,
"total": 150,
"totalPages": 7
},
"links": {
"self": "/api/v1/hotels?page=5&limit=24",
"first": "/api/v1/hotels?page=1&limit=24",
"last": "/api/v1/hotels?page=7&limit=24",
"next": "/api/v1/hotels?page=6&limit=24",
"prev": "/api/v1/hotels?page=4&limit=24"
}
}