example-data.com

bookings

bookings

Page 6 of 10.

Mar
16
Mon

property booking #121

6:43 AM – 6:43 AM

From CAD4553.28

Jan
4
Mon

property booking #122

4:16 PM – 4:16 PM

From CAD3922.28

Sep
21
Mon

property booking #123

7:28 AM – 7:28 AM

From EUR7351.00

Mar
13
Sat

property booking #124

10:19 PM – 10:19 PM

From CAD761.54

Jan
3
Sun

flight booking #125

10:40 PM – 10:40 PM

From USD2158.90

Oct
15
Thu

hotel booking #126

1:29 PM – 1:29 PM

From CAD196.37

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": 121,
      "userId": 209,
      "kind": "property",
      "referenceId": 189,
      "checkInAt": "2026-03-16T06:43:17.763Z",
      "checkOutAt": "2026-03-19T06:43:17.763Z",
      "status": "cancelled",
      "totalAmount": 4553.28,
      "currency": "CAD",
      "createdAt": "2025-12-24T06:43:17.763Z"
    },
    {
      "id": 122,
      "userId": 9,
      "kind": "property",
      "referenceId": 151,
      "checkInAt": "2027-01-04T16:16:09.782Z",
      "checkOutAt": "2027-01-15T16:16:09.782Z",
      "status": "cancelled",
      "totalAmount": 3922.28,
      "currency": "CAD",
      "createdAt": "2026-11-21T16:16:09.782Z"
    },
    {
      "id": 123,
      "userId": 29,
      "kind": "property",
      "referenceId": 184,
      "checkInAt": "2026-09-21T07:28:50.802Z",
      "checkOutAt": "2026-10-03T07:28:50.802Z",
      "status": "confirmed",
      "totalAmount": 7351,
      "currency": "EUR",
      "createdAt": "2026-07-16T07:28:50.802Z"
    }
  ],
  "meta": {
    "page": 6,
    "limit": 24,
    "total": 500,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/bookings?page=6",
    "next": "/api/v1/bookings?page=7",
    "prev": "/api/v1/bookings?page=5"
  }
}
Draftbit