example-data.com

bookings

bookings

Page 8 of 10.

Jan
28
Thu

hotel booking #169

2:13 AM – 2:13 AM

From AED995.34

Oct
3
Fri

hotel booking #170

9:46 AM – 9:46 AM

From SGD6965.34

Sep
26
Sat

flight booking #171

9:15 PM – 9:15 PM

From USD9042.10

Mar
15
Sun

hotel booking #172

11:19 PM – 11:19 PM

From AED892.86

May
12
Tue

hotel booking #173

3:56 PM – 3:56 PM

From SGD8135.59

Jul
31
Thu

flight booking #174

2:15 PM – 2:15 PM

From GBP4839.56

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": 169,
      "userId": 27,
      "kind": "hotel",
      "referenceId": 2,
      "checkInAt": "2027-01-28T02:13:17.768Z",
      "checkOutAt": "2027-02-04T02:13:17.768Z",
      "status": "cancelled",
      "totalAmount": 995.34,
      "currency": "AED",
      "createdAt": "2027-01-13T02:13:17.768Z"
    },
    {
      "id": 170,
      "userId": 156,
      "kind": "hotel",
      "referenceId": 122,
      "checkInAt": "2025-10-03T09:46:08.044Z",
      "checkOutAt": "2025-10-05T09:46:08.044Z",
      "status": "pending",
      "totalAmount": 6965.34,
      "currency": "SGD",
      "createdAt": "2025-07-28T09:46:08.044Z"
    },
    {
      "id": 171,
      "userId": 248,
      "kind": "flight",
      "referenceId": 272,
      "checkInAt": "2026-09-26T21:15:59.531Z",
      "checkOutAt": "2026-09-26T21:15:59.531Z",
      "status": "cancelled",
      "totalAmount": 9042.1,
      "currency": "USD",
      "createdAt": "2026-07-06T21:15:59.531Z"
    }
  ],
  "meta": {
    "page": 8,
    "limit": 24,
    "total": 500,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/bookings?page=8",
    "next": "/api/v1/bookings?page=9",
    "prev": "/api/v1/bookings?page=7"
  }
}
Draftbit