bookings
bookings
Page 16 of 21.
Overview
- Sep26
property booking #361
2:18 AM
- Nov12
property booking #362
7:18 PM
- Jun20
flight booking #363
10:33 PM
- Mar6
flight booking #364
12:44 PM
- May20
hotel booking #365
6:26 PM
- Nov28
hotel booking #366
6:46 AM
- Apr18
property booking #367
8:24 AM
- Jul14
property booking #368
9:14 AM
- Oct18
hotel booking #369
2:45 PM
- Apr30
flight booking #370
3:17 AM
- Jan10
hotel booking #371
10:14 AM
- May9
property booking #372
2:45 PM
- Jun27
property booking #373
2:41 PM
- Jun21
hotel booking #374
1:09 PM
- Sep7
property booking #375
8:40 PM
- Jun18
hotel booking #376
10:34 PM
- Jul8
hotel booking #377
6:10 PM
- Jan22
property booking #378
10:11 AM
- Aug22
property booking #379
1:22 PM
- Oct7
hotel booking #380
12:36 PM
- Oct10
flight booking #381
1:04 PM
- Jan16
property booking #382
5:08 AM
- Feb23
flight booking #383
7:04 AM
- Sep11
flight booking #384
6:42 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/bookings?limit=25"
JavaScript example
const res = await fetch(
"https://example-data.com/api/v1/bookings?limit=25"
);
const { data, meta } = await res.json(); TypeScript example
// Download once: mkdir -p types && curl -o types/bookings.d.ts https://example-data.com/types/bookings.d.ts
import type { Booking, ListEnvelope } from "./types/bookings";
const res = await fetch(
"https://example-data.com/api/v1/bookings?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Booking>; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/bookings",
params={"limit": 25},
)
data = res.json() Response
{
"data": [
{
"id": 361,
"userId": 58,
"kind": "property",
"referenceId": 22,
"checkInAt": "2025-09-26T02:18:08.401Z",
"checkOutAt": "2025-10-07T02:18:08.401Z",
"status": "completed",
"totalAmount": 1958.24,
"currency": "USD",
"createdAt": "2025-09-14T02:18:08.401Z"
},
{
"id": 362,
"userId": 83,
"kind": "property",
"referenceId": 13,
"checkInAt": "2025-11-12T19:18:08.301Z",
"checkOutAt": "2025-11-25T19:18:08.301Z",
"status": "pending",
"totalAmount": 6424.63,
"currency": "SGD",
"createdAt": "2025-09-29T19:18:08.301Z"
},
{
"id": 363,
"userId": 29,
"kind": "flight",
"referenceId": 190,
"checkInAt": "2026-06-20T22:33:15.448Z",
"checkOutAt": "2026-06-20T22:33:15.448Z",
"status": "completed",
"totalAmount": 1255.89,
"currency": "AUD",
"createdAt": "2026-04-23T22:33:15.448Z"
}
],
"meta": {
"page": 16,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/bookings?page=16&limit=24",
"first": "/api/v1/bookings?page=1&limit=24",
"last": "/api/v1/bookings?page=21&limit=24",
"next": "/api/v1/bookings?page=17&limit=24",
"prev": "/api/v1/bookings?page=15&limit=24"
}
}