bookings
bookings
Page 20 of 21.
Overview
- Feb20
property booking #457
9:35 AM
- May10
property booking #458
4:50 PM
- Jul17
hotel booking #459
12:10 AM
- Sep4
hotel booking #460
5:41 AM
- Mar21
flight booking #461
5:11 AM
- Feb5
hotel booking #462
9:20 PM
- Mar18
property booking #463
3:53 AM
- Dec26
property booking #464
5:20 AM
- Jan18
property booking #465
5:07 AM
- Dec12
hotel booking #466
10:58 PM
- Jun26
property booking #467
11:53 AM
- Dec23
flight booking #468
12:08 PM
- May17
flight booking #469
9:54 AM
- Nov9
hotel booking #470
3:04 PM
- Jan11
property booking #471
2:01 AM
- Oct29
hotel booking #472
11:44 AM
- Apr7
flight booking #473
3:16 AM
- Apr22
hotel booking #474
3:41 AM
- Jan14
flight booking #475
5:52 AM
- Mar27
hotel booking #476
8:44 AM
- Apr13
hotel booking #477
1:04 AM
- Jul6
property booking #478
10:59 PM
- Nov25
flight booking #479
10:07 PM
- Nov24
flight booking #480
6:21 AM
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": 457,
"userId": 21,
"kind": "property",
"referenceId": 110,
"checkInAt": "2026-02-20T09:35:42.638Z",
"checkOutAt": "2026-02-25T09:35:42.638Z",
"status": "pending",
"totalAmount": 6484.01,
"currency": "CAD",
"createdAt": "2025-12-23T09:35:42.638Z"
},
{
"id": 458,
"userId": 111,
"kind": "property",
"referenceId": 80,
"checkInAt": "2026-05-10T16:50:36.711Z",
"checkOutAt": "2026-05-24T16:50:36.711Z",
"status": "confirmed",
"totalAmount": 5623.21,
"currency": "CAD",
"createdAt": "2026-03-22T16:50:36.711Z"
},
{
"id": 459,
"userId": 181,
"kind": "hotel",
"referenceId": 6,
"checkInAt": "2025-07-17T00:10:47.854Z",
"checkOutAt": "2025-07-28T00:10:47.854Z",
"status": "cancelled",
"totalAmount": 7289.37,
"currency": "EUR",
"createdAt": "2025-05-31T00:10:47.854Z"
}
],
"meta": {
"page": 20,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/bookings?page=20&limit=24",
"first": "/api/v1/bookings?page=1&limit=24",
"last": "/api/v1/bookings?page=21&limit=24",
"next": "/api/v1/bookings?page=21&limit=24",
"prev": "/api/v1/bookings?page=19&limit=24"
}
}