bookings
bookings
Page 10 of 10.
- property booking #217 · 10/2/2025
- flight booking #218 · 6/5/2025
- property booking #219 · 10/1/2026
- property booking #220 · 3/7/2026
- property booking #221 · 10/6/2026
- hotel booking #222 · 7/19/2026
- property booking #223 · 12/9/2025
- property booking #224 · 5/16/2027
- flight booking #225 · 11/25/2025
- flight booking #226 · 10/13/2026
- flight booking #227 · 8/14/2026
- flight booking #228 · 8/27/2025
- flight booking #229 · 2/12/2027
- property booking #230 · 9/29/2025
- property booking #231 · 2/5/2026
- flight booking #232 · 9/15/2025
- property booking #233 · 11/16/2026
- property booking #234 · 7/6/2026
- hotel booking #235 · 6/6/2025
- property booking #236 · 10/19/2026
- property booking #237 · 5/24/2025
- hotel booking #238 · 2/10/2027
- hotel booking #239 · 5/14/2026
- hotel booking #240 · 12/26/2025
- Oct2
property booking #217
11:33 PM
- Jun5
flight booking #218
9:24 AM
- Oct1
property booking #219
4:13 AM
- Mar7
property booking #220
2:14 AM
- Oct6
property booking #221
9:21 AM
- Jul19
hotel booking #222
9:41 AM
- Dec9
property booking #223
10:11 PM
- May16
property booking #224
7:10 PM
- Nov25
flight booking #225
10:07 PM
- Oct13
flight booking #226
1:14 AM
- Aug14
flight booking #227
2:23 PM
- Aug27
flight booking #228
12:38 AM
- Feb12
flight booking #229
5:50 AM
- Sep29
property booking #230
3:40 AM
- Feb5
property booking #231
2:15 PM
- Sep15
flight booking #232
11:47 AM
- Nov16
property booking #233
3:36 PM
- Jul6
property booking #234
9:35 AM
- Jun6
hotel booking #235
12:30 PM
- Oct19
property booking #236
6:51 AM
- May24
property booking #237
2:53 PM
- Feb10
hotel booking #238
9:14 AM
- May14
hotel booking #239
10:05 PM
- Dec26
hotel booking #240
11:52 AM
property booking #217
11:33 PM – 11:33 PM
From CAD9910.69
flight booking #218
9:24 AM – 9:24 AM
From AUD3124.31
property booking #219
4:13 AM – 4:13 AM
From CAD5139.83
property booking #220
2:14 AM – 2:14 AM
From AED3760.57
property booking #221
9:21 AM – 9:21 AM
From USD8036.33
hotel booking #222
9:41 AM – 9:41 AM
From AED7158.57
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": 217,
"userId": 83,
"kind": "property",
"referenceId": 23,
"checkInAt": "2025-10-02T23:33:31.904Z",
"checkOutAt": "2025-10-16T23:33:31.904Z",
"status": "cancelled",
"totalAmount": 9910.69,
"currency": "CAD",
"createdAt": "2025-08-06T23:33:31.904Z"
},
{
"id": 218,
"userId": 31,
"kind": "flight",
"referenceId": 115,
"checkInAt": "2025-06-05T09:24:17.092Z",
"checkOutAt": "2025-06-05T09:24:17.092Z",
"status": "completed",
"totalAmount": 3124.31,
"currency": "AUD",
"createdAt": "2025-04-02T09:24:17.092Z"
},
{
"id": 219,
"userId": 223,
"kind": "property",
"referenceId": 130,
"checkInAt": "2026-10-01T04:13:34.263Z",
"checkOutAt": "2026-10-03T04:13:34.263Z",
"status": "cancelled",
"totalAmount": 5139.83,
"currency": "CAD",
"createdAt": "2026-08-10T04:13:34.263Z"
}
],
"meta": {
"page": 10,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/bookings?page=10",
"next": "/api/v1/bookings?page=11",
"prev": "/api/v1/bookings?page=9"
}
}