example-data.com

bookings

bookings

Page 10 of 10.

Oct
2
Thu

property booking #217

11:33 PM – 11:33 PM

From CAD9910.69

Jun
5
Thu

flight booking #218

9:24 AM – 9:24 AM

From AUD3124.31

Oct
1
Thu

property booking #219

4:13 AM – 4:13 AM

From CAD5139.83

Mar
7
Sat

property booking #220

2:14 AM – 2:14 AM

From AED3760.57

Oct
6
Tue

property booking #221

9:21 AM – 9:21 AM

From USD8036.33

Jul
19
Sun

hotel booking #222

9:41 AM – 9:41 AM

From AED7158.57

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": 217,
      "userId": 83,
      "kind": "property",
      "referenceId": 23,
      "checkInAt": "2025-10-02T23:33:31.904Z",
      "checkOutAt": "2025-10-16T23:33:31.904Z",
      "status": "cancelled",
      "totalAmount": 9910.69,
      "currency": "CAD",
      "createdAt": "2025-08-06T23:33:31.904Z"
    },
    {
      "id": 218,
      "userId": 31,
      "kind": "flight",
      "referenceId": 115,
      "checkInAt": "2025-06-05T09:24:17.092Z",
      "checkOutAt": "2025-06-05T09:24:17.092Z",
      "status": "completed",
      "totalAmount": 3124.31,
      "currency": "AUD",
      "createdAt": "2025-04-02T09:24:17.092Z"
    },
    {
      "id": 219,
      "userId": 223,
      "kind": "property",
      "referenceId": 130,
      "checkInAt": "2026-10-01T04:13:34.263Z",
      "checkOutAt": "2026-10-03T04:13:34.263Z",
      "status": "cancelled",
      "totalAmount": 5139.83,
      "currency": "CAD",
      "createdAt": "2026-08-10T04:13:34.263Z"
    }
  ],
  "meta": {
    "page": 10,
    "limit": 24,
    "total": 500,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/bookings?page=10",
    "next": "/api/v1/bookings?page=11",
    "prev": "/api/v1/bookings?page=9"
  }
}
Draftbit