example-data.com

bookings

bookings

Page 4 of 10.

Sep
4
Fri

hotel booking #73

7:02 AM – 7:02 AM

From AED5039.89

Oct
27
Mon

flight booking #74

5:34 AM – 5:34 AM

From USD4049.68

Oct
9
Thu

property booking #75

1:47 PM – 1:47 PM

From CAD3337.95

Sep
10
Wed

flight booking #76

1:31 AM – 1:31 AM

From USD8733.92

Nov
6
Fri

property booking #77

3:36 PM – 3:36 PM

From SGD6127.28

Aug
22
Sat

hotel booking #78

12:50 PM – 12:50 PM

From AED6716.18

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": 73,
      "userId": 69,
      "kind": "hotel",
      "referenceId": 2,
      "checkInAt": "2026-09-04T07:02:25.596Z",
      "checkOutAt": "2026-09-18T07:02:25.596Z",
      "status": "cancelled",
      "totalAmount": 5039.89,
      "currency": "AED",
      "createdAt": "2026-06-27T07:02:25.596Z"
    },
    {
      "id": 74,
      "userId": 86,
      "kind": "flight",
      "referenceId": 362,
      "checkInAt": "2025-10-27T05:34:44.276Z",
      "checkOutAt": "2025-10-27T05:34:44.276Z",
      "status": "confirmed",
      "totalAmount": 4049.68,
      "currency": "USD",
      "createdAt": "2025-08-26T05:34:44.276Z"
    },
    {
      "id": 75,
      "userId": 200,
      "kind": "property",
      "referenceId": 61,
      "checkInAt": "2025-10-09T13:47:44.188Z",
      "checkOutAt": "2025-10-10T13:47:44.188Z",
      "status": "cancelled",
      "totalAmount": 3337.95,
      "currency": "CAD",
      "createdAt": "2025-09-23T13:47:44.188Z"
    }
  ],
  "meta": {
    "page": 4,
    "limit": 24,
    "total": 500,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/bookings?page=4",
    "next": "/api/v1/bookings?page=5",
    "prev": "/api/v1/bookings?page=3"
  }
}
Draftbit