example-data.com

bookings

bookings

Page 2 of 10.

Jul
4
Fri

property booking #25

7:10 AM – 7:10 AM

From AUD2299.79

Nov
3
Tue

flight booking #26

4:26 PM – 4:26 PM

From EUR7832.58

Apr
30
Fri

flight booking #27

8:36 PM – 8:36 PM

From CAD7791.11

Feb
25
Thu

hotel booking #28

11:44 AM – 11:44 AM

From JPY129.83

Apr
29
Thu

property booking #29

12:57 AM – 12:57 AM

From EUR2407.03

Jul
22
Tue

flight booking #30

8:08 PM – 8:08 PM

From GBP5409.58

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": 25,
      "userId": 154,
      "kind": "property",
      "referenceId": 152,
      "checkInAt": "2025-07-04T07:10:42.825Z",
      "checkOutAt": "2025-07-17T07:10:42.825Z",
      "status": "confirmed",
      "totalAmount": 2299.79,
      "currency": "AUD",
      "createdAt": "2025-07-03T07:10:42.825Z"
    },
    {
      "id": 26,
      "userId": 82,
      "kind": "flight",
      "referenceId": 79,
      "checkInAt": "2026-11-03T16:26:31.897Z",
      "checkOutAt": "2026-11-03T16:26:31.897Z",
      "status": "completed",
      "totalAmount": 7832.58,
      "currency": "EUR",
      "createdAt": "2026-09-25T16:26:31.897Z"
    },
    {
      "id": 27,
      "userId": 58,
      "kind": "flight",
      "referenceId": 213,
      "checkInAt": "2027-04-30T20:36:49.639Z",
      "checkOutAt": "2027-04-30T20:36:49.639Z",
      "status": "confirmed",
      "totalAmount": 7791.11,
      "currency": "CAD",
      "createdAt": "2027-02-15T20:36:49.639Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 500,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/bookings?page=2",
    "next": "/api/v1/bookings?page=3",
    "prev": "/api/v1/bookings?page=1"
  }
}
Draftbit