example-data.com

bookings

bookings

Page 3 of 10.

Mar
17
Tue

property booking #49

12:58 AM – 12:58 AM

From SGD1608.74

Jun
6
Sat

property booking #50

12:45 AM – 12:45 AM

From USD2915.36

May
12
Tue

hotel booking #51

11:38 PM – 11:38 PM

From SGD9774.01

Mar
24
Tue

flight booking #52

9:24 AM – 9:24 AM

From JPY9665.06

Mar
4
Wed

hotel booking #53

3:57 PM – 3:57 PM

From SGD4838.85

Aug
6
Thu

flight booking #54

8:51 AM – 8:51 AM

From AED1376.43

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": 49,
      "userId": 188,
      "kind": "property",
      "referenceId": 82,
      "checkInAt": "2026-03-17T00:58:00.792Z",
      "checkOutAt": "2026-03-18T00:58:00.792Z",
      "status": "confirmed",
      "totalAmount": 1608.74,
      "currency": "SGD",
      "createdAt": "2026-01-04T00:58:00.792Z"
    },
    {
      "id": 50,
      "userId": 234,
      "kind": "property",
      "referenceId": 178,
      "checkInAt": "2026-06-06T00:45:18.517Z",
      "checkOutAt": "2026-06-10T00:45:18.517Z",
      "status": "cancelled",
      "totalAmount": 2915.36,
      "currency": "USD",
      "createdAt": "2026-03-18T00:45:18.517Z"
    },
    {
      "id": 51,
      "userId": 20,
      "kind": "hotel",
      "referenceId": 134,
      "checkInAt": "2026-05-12T23:38:45.104Z",
      "checkOutAt": "2026-05-19T23:38:45.104Z",
      "status": "cancelled",
      "totalAmount": 9774.01,
      "currency": "SGD",
      "createdAt": "2026-04-20T23:38:45.104Z"
    }
  ],
  "meta": {
    "page": 3,
    "limit": 24,
    "total": 500,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/bookings?page=3",
    "next": "/api/v1/bookings?page=4",
    "prev": "/api/v1/bookings?page=2"
  }
}
Draftbit