example-data.com

bookings

bookings

Page 5 of 10.

Dec
31
Thu

flight booking #97

6:40 PM – 6:40 PM

From AED80.18

Jun
29
Sun

hotel booking #98

9:51 PM – 9:51 PM

From AUD5886.28

Aug
16
Sun

hotel booking #99

1:04 PM – 1:04 PM

From GBP8623.70

Apr
3
Fri

hotel booking #100

3:37 PM – 3:37 PM

From USD8569.04

Jan
2
Fri

hotel booking #101

11:50 PM – 11:50 PM

From GBP3432.07

May
22
Fri

property booking #102

9:11 AM – 9:11 AM

From SGD5829.62

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": 97,
      "userId": 18,
      "kind": "flight",
      "referenceId": 163,
      "checkInAt": "2026-12-31T18:40:07.923Z",
      "checkOutAt": "2026-12-31T18:40:07.923Z",
      "status": "pending",
      "totalAmount": 80.18,
      "currency": "AED",
      "createdAt": "2026-11-03T18:40:07.923Z"
    },
    {
      "id": 98,
      "userId": 15,
      "kind": "hotel",
      "referenceId": 61,
      "checkInAt": "2025-06-29T21:51:24.276Z",
      "checkOutAt": "2025-07-02T21:51:24.276Z",
      "status": "completed",
      "totalAmount": 5886.28,
      "currency": "AUD",
      "createdAt": "2025-06-14T21:51:24.276Z"
    },
    {
      "id": 99,
      "userId": 5,
      "kind": "hotel",
      "referenceId": 80,
      "checkInAt": "2026-08-16T13:04:43.790Z",
      "checkOutAt": "2026-08-23T13:04:43.790Z",
      "status": "cancelled",
      "totalAmount": 8623.7,
      "currency": "GBP",
      "createdAt": "2026-06-05T13:04:43.790Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 500,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/bookings?page=5",
    "next": "/api/v1/bookings?page=6",
    "prev": "/api/v1/bookings?page=4"
  }
}
Draftbit