example-data.com

hotels

hotels

Page 5 of 7.

Dramatic Lodge West Adelia

hotel · West Adelia · $85.74+/night · ★ 3.5 (3669)

4143 E Pine Street

laundryrestaurantparkingspabeach-accesscasinoroom-servicewifi

Grumpy Resort Riverview

hotel · Riverview · $121.19+/night · ★ 4.3 (3681)

9772 Rosendo Canyon

beach-accessconciergerestaurant

Grouchy Lodge Laredo

hotel · Laredo · $1754.98+/night · ★ 4.2 (1617)

3914 Ocie Loop

casinoroom-servicebeach-accessairport-shuttlerestaurantgymparking

Interesting Suites East Daron

hotel · East Daron · $1508.38+/night · ★ 2.2 (4531)

62088 Spencer Spring

laundryairport-shuttle

Happy-go-lucky Suites Calebborough

hotel · Calebborough · $740.86+/night · ★ 3.5 (2429)

245 Lillian Greens

wifilaundry

Untried Palace Tempe

hotel · Tempe · $1221.87+/night · ★ 2.5 (2674)

10136 Breitenberg Flats

beach-accessgym

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": 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",
    "next": "/api/v1/hotels?page=6",
    "prev": "/api/v1/hotels?page=4"
  }
}
Draftbit