example-data.com

hotels

hotels

Browse 150 hotels records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.

Same Lodge Beaumont

hotel · Beaumont · $785.31+/night · ★ 3.4 (3924)

783 Lakin Roads

pet-friendlyparkingairport-shuttlebar

Fussy Inn South Marion

hotel · South Marion · $678.87+/night · ★ 2.5 (4604)

400 W Broadway Street

laundrybusiness-centerrestaurantpet-friendlygympoolspa

Enchanting Lodge Fort Lauderdale

hotel · Fort Lauderdale · $1187.58+/night · ★ 3.5 (2427)

61959 Pauline Spring

conciergegympoollaundrypet-friendlybusiness-centerspabar

Untimely Hotel New Bernhardville

hotel · New Bernhardville · $1319.91+/night · ★ 2.5 (571)

51445 4th Street

barlaundrybusiness-centerbeach-accesspoolairport-shuttlespawifi

Tiny Lodge Lake Josianneberg

hotel · Lake Josianneberg · $1768.44+/night · ★ 2.2 (2933)

88885 O'Connell Rapid

room-servicebeach-accessconcierge

Impressive Inn Kohlercester

hotel · Kohlercester · $1119.16+/night · ★ 4.8 (4400)

86858 Ashlee Gardens

poolroom-service

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": 1,
      "name": "Same Lodge Beaumont",
      "slug": "same-lodge-beaumont-1",
      "brand": "Accor",
      "countryAlpha2": "AU",
      "city": "Beaumont",
      "address": "783 Lakin Roads",
      "latitude": 52.537448,
      "longitude": 41.243524,
      "starRating": 4,
      "rating": 3.4,
      "ratingCount": 3924,
      "priceFromPerNight": 785.31,
      "currency": "CAD",
      "amenities": [
        "pet-friendly",
        "parking",
        "airport-shuttle",
        "bar"
      ],
      "createdAt": "2025-03-21T01:28:31.055Z"
    },
    {
      "id": 2,
      "name": "Fussy Inn South Marion",
      "slug": "fussy-inn-south-marion-2",
      "brand": "Marriott",
      "countryAlpha2": "AR",
      "city": "South Marion",
      "address": "400 W Broadway Street",
      "latitude": -7.766618,
      "longitude": 39.331868,
      "starRating": 2,
      "rating": 2.5,
      "ratingCount": 4604,
      "priceFromPerNight": 678.87,
      "currency": "AUD",
      "amenities": [
        "laundry",
        "business-center",
        "restaurant",
        "pet-friendly",
        "gym",
        "pool",
        "spa"
      ],
      "createdAt": "2024-06-08T13:20:33.592Z"
    },
    {
      "id": 3,
      "name": "Enchanting Lodge Fort Lauderdale",
      "slug": "enchanting-lodge-fort-lauderdale-3",
      "brand": "Ritz-Carlton",
      "countryAlpha2": "AR",
      "city": "Fort Lauderdale",
      "address": "61959 Pauline Spring",
      "latitude": -41.461844,
      "longitude": 155.356649,
      "starRating": 4,
      "rating": 3.5,
      "ratingCount": 2427,
      "priceFromPerNight": 1187.58,
      "currency": "AUD",
      "amenities": [
        "concierge",
        "gym",
        "pool",
        "laundry",
        "pet-friendly",
        "business-center",
        "spa",
        "bar"
      ],
      "createdAt": "2025-01-18T17:01:59.709Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 25,
    "total": 150,
    "totalPages": 6
  },
  "links": {
    "self": "/api/v1/hotels?page=1",
    "first": "/api/v1/hotels?page=1",
    "last": "/api/v1/hotels?page=6",
    "next": "/api/v1/hotels?page=2",
    "prev": null
  }
}

View full response →

Draftbit