hotels
hotels
Page 6 of 7.
Overview
-
Petty Resort Coon Rapids
hotel · Coon Rapids
★ 2.7 (890) · $1729.46+/night
-
Surprised Palace Port Karenchester
hotel · Port Karenchester
★ 4.5 (4319) · $779.43+/night
-
True Inn Charleschester
hotel · Charleschester
★ 3.2 (1405) · $1522.18+/night
-
Happy-go-lucky Suites West Brendon
hotel · West Brendon
★ 2.3 (6) · $978.83+/night
-
Yummy Hotel Lake Reece
hotel · Lake Reece
★ 3.4 (2594) · $1177.67+/night
-
Accomplished Hotel Mount Pleasant
hotel · Mount Pleasant
★ 2.9 (1387) · $1925.14+/night
-
Talkative Inn Balistreriworth
hotel · Balistreriworth
★ 2.1 (4397) · $774.04+/night
-
Respectful Suites West Dortha
hotel · West Dortha
★ 4.5 (298) · $978.35+/night
-
Miserly Inn Mayertview
hotel · Mayertview
★ 3.3 (795) · $1410.99+/night
-
Trustworthy Lodge North Duaneside
hotel · North Duaneside
★ 2.2 (3549) · $1316.85+/night
-
Busy Suites Fall River
hotel · Fall River
★ 4.7 (4499) · $331.47+/night
-
Overdue Suites East Brain
hotel · East Brain
★ 2.5 (4978) · $171.58+/night
-
Unconscious Suites South Arlene
hotel · South Arlene
★ 3.5 (2815) · $337.89+/night
-
Dearest Hotel East Nicolefurt
hotel · East Nicolefurt
★ 3.5 (1363) · $1618.71+/night
-
Gleaming Palace Huntersville
hotel · Huntersville
★ 3.3 (2469) · $1306.59+/night
-
Staid Suites Mannland
hotel · Mannland
★ 2.2 (2520) · $1620.94+/night
-
Complicated Hotel Susiechester
hotel · Susiechester
★ 4.7 (1514) · $1862.84+/night
-
Good Resort Kemmerbury
hotel · Kemmerbury
★ 4.9 (4597) · $1396.87+/night
-
Pricey Inn Stammtown
hotel · Stammtown
★ 3.1 (4649) · $1643.79+/night
-
Authorized Lodge Bonitafield
hotel · Bonitafield
★ 4.6 (1739) · $1261.03+/night
-
Calculating Palace Port Charlotte
hotel · Port Charlotte
★ 4.8 (1851) · $1637.75+/night
-
Yearly Resort New Britain
hotel · New Britain
★ 4.3 (364) · $847.33+/night
-
Early Inn Lake Abelstead
hotel · Lake Abelstead
★ 3.2 (2714) · $1628.55+/night
-
International Suites Adityamouth
hotel · Adityamouth
★ 3.2 (189) · $1826.03+/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": 121,
"name": "Petty Resort Coon Rapids",
"slug": "petty-resort-coon-rapids-121",
"brand": null,
"countryAlpha2": "CA",
"city": "Coon Rapids",
"address": "3127 Brookside",
"latitude": -28.482851,
"longitude": -69.053214,
"starRating": 3,
"rating": 2.7,
"ratingCount": 890,
"priceFromPerNight": 1729.46,
"currency": "THB",
"amenities": [
"concierge",
"beach-access",
"business-center",
"gym",
"bar",
"pet-friendly"
],
"createdAt": "2025-05-13T08:44:04.596Z"
},
{
"id": 122,
"name": "Surprised Palace Port Karenchester",
"slug": "surprised-palace-port-karenchester-122",
"brand": "Accor",
"countryAlpha2": "AR",
"city": "Port Karenchester",
"address": "5749 Barn Close",
"latitude": -21.166604,
"longitude": -3.954863,
"starRating": 4,
"rating": 4.5,
"ratingCount": 4319,
"priceFromPerNight": 779.43,
"currency": "USD",
"amenities": [
"room-service",
"casino"
],
"createdAt": "2025-04-12T19:34:52.844Z"
},
{
"id": 123,
"name": "True Inn Charleschester",
"slug": "true-inn-charleschester-123",
"brand": "IHG",
"countryAlpha2": "FI",
"city": "Charleschester",
"address": "59082 Marilyne Ford",
"latitude": 45.360578,
"longitude": -81.298293,
"starRating": 5,
"rating": 3.2,
"ratingCount": 1405,
"priceFromPerNight": 1522.18,
"currency": "JPY",
"amenities": [
"business-center",
"parking"
],
"createdAt": "2025-11-20T06:33:23.185Z"
}
],
"meta": {
"page": 6,
"limit": 24,
"total": 150,
"totalPages": 7
},
"links": {
"self": "/api/v1/hotels?page=6&limit=24",
"first": "/api/v1/hotels?page=1&limit=24",
"last": "/api/v1/hotels?page=7&limit=24",
"next": "/api/v1/hotels?page=7&limit=24",
"prev": "/api/v1/hotels?page=5&limit=24"
}
}