example-data.com

bookings

bookings

Page 9 of 10.

Nov
2
Mon

hotel booking #193

12:16 AM – 12:16 AM

From AED9999.00

May
22
Fri

hotel booking #194

5:43 AM – 5:43 AM

From JPY6482.60

Oct
11
Sun

hotel booking #195

4:07 PM – 4:07 PM

From JPY371.35

Sep
23
Tue

hotel booking #196

1:39 AM – 1:39 AM

From SGD4004.44

Apr
19
Sun

hotel booking #197

5:03 PM – 5:03 PM

From JPY3848.95

Jun
20
Fri

property booking #198

2:31 AM – 2:31 AM

From JPY7976.80

Showing first 6 of 24 on this page.

curl -sS \
  "https://example-data.com/api/v1/bookings?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/bookings?limit=25"
);
const { data, meta } = await res.json();
import type { Booking, ListEnvelope } from "https://example-data.com/types/bookings.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/bookings?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Booking>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/bookings",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 193,
      "userId": 93,
      "kind": "hotel",
      "referenceId": 63,
      "checkInAt": "2026-11-02T00:16:31.221Z",
      "checkOutAt": "2026-11-06T00:16:31.221Z",
      "status": "completed",
      "totalAmount": 9999,
      "currency": "AED",
      "createdAt": "2026-10-14T00:16:31.221Z"
    },
    {
      "id": 194,
      "userId": 116,
      "kind": "hotel",
      "referenceId": 130,
      "checkInAt": "2026-05-22T05:43:44.431Z",
      "checkOutAt": "2026-06-01T05:43:44.431Z",
      "status": "pending",
      "totalAmount": 6482.6,
      "currency": "JPY",
      "createdAt": "2026-03-15T05:43:44.431Z"
    },
    {
      "id": 195,
      "userId": 7,
      "kind": "hotel",
      "referenceId": 16,
      "checkInAt": "2026-10-11T16:07:06.164Z",
      "checkOutAt": "2026-10-21T16:07:06.164Z",
      "status": "cancelled",
      "totalAmount": 371.35,
      "currency": "JPY",
      "createdAt": "2026-08-22T16:07:06.164Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 500,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/bookings?page=9",
    "next": "/api/v1/bookings?page=10",
    "prev": "/api/v1/bookings?page=8"
  }
}
Draftbit