example-data.com

hotels

hotels

Page 2 of 7.

Physical Suites Kaseyville

hotel · Kaseyville · $729.38+/night · ★ 2.4 (110)

4755 Gavin Cliff

poolrestaurantbusiness-centerbeach-access

Legal Resort Vonside

hotel · Vonside · $818.76+/night · ★ 3.3 (688)

6310 Robb Flat

laundrybusiness-center

Late Hotel Fort Amandaborough

hotel · Fort Amandaborough · $508.7+/night · ★ 4.7 (3389)

9756 Center Avenue

pet-friendlyroom-servicebusiness-centercasinoparkinglaundry

Favorite Resort Fort Eliezer

hotel · Fort Eliezer · $1841.81+/night · ★ 2.1 (818)

994 Hillside Close

laundrybusiness-centerrestaurant

Overdue Resort West Kurt

hotel · West Kurt · $1612.58+/night · ★ 4.0 (3850)

86901 E Main Street

spalaundryconciergeroom-servicecasinopoolgymbusiness-center

Awesome Lodge Krismouth

hotel · Krismouth · $587.28+/night · ★ 2.3 (1909)

59214 Erdman Park

spaconciergegymparkingbusiness-centerrestaurantpet-friendly

Showing first 6 of 24 on this page.

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()
{
  "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",
    "next": "/api/v1/hotels?page=3",
    "prev": "/api/v1/hotels?page=1"
  }
}
Draftbit