bookings
bookings
Page 4 of 10.
- hotel booking #73 · 9/4/2026
- flight booking #74 · 10/27/2025
- property booking #75 · 10/9/2025
- flight booking #76 · 9/10/2025
- property booking #77 · 11/6/2026
- hotel booking #78 · 8/22/2026
- flight booking #79 · 7/28/2025
- property booking #80 · 12/22/2025
- flight booking #81 · 7/23/2026
- hotel booking #82 · 11/17/2026
- hotel booking #83 · 2/3/2026
- property booking #84 · 9/28/2026
- flight booking #85 · 4/19/2027
- property booking #86 · 10/11/2025
- flight booking #87 · 7/4/2025
- flight booking #88 · 8/3/2025
- flight booking #89 · 7/17/2026
- flight booking #90 · 12/23/2026
- property booking #91 · 6/29/2025
- property booking #92 · 5/27/2026
- flight booking #93 · 6/11/2026
- hotel booking #94 · 2/18/2026
- hotel booking #95 · 8/4/2025
- flight booking #96 · 4/27/2027
- Sep4
hotel booking #73
7:02 AM
- Oct27
flight booking #74
5:34 AM
- Oct9
property booking #75
1:47 PM
- Sep10
flight booking #76
1:31 AM
- Nov6
property booking #77
3:36 PM
- Aug22
hotel booking #78
12:50 PM
- Jul28
flight booking #79
5:17 AM
- Dec22
property booking #80
8:30 AM
- Jul23
flight booking #81
11:53 AM
- Nov17
hotel booking #82
10:59 AM
- Feb3
hotel booking #83
3:46 PM
- Sep28
property booking #84
5:01 AM
- Apr19
flight booking #85
5:54 AM
- Oct11
property booking #86
9:23 PM
- Jul4
flight booking #87
11:06 PM
- Aug3
flight booking #88
10:25 AM
- Jul17
flight booking #89
12:42 PM
- Dec23
flight booking #90
8:28 PM
- Jun29
property booking #91
9:23 PM
- May27
property booking #92
2:05 PM
- Jun11
flight booking #93
5:17 PM
- Feb18
hotel booking #94
11:24 AM
- Aug4
hotel booking #95
5:44 AM
- Apr27
flight booking #96
3:13 PM
hotel booking #73
7:02 AM – 7:02 AM
From AED5039.89
flight booking #74
5:34 AM – 5:34 AM
From USD4049.68
property booking #75
1:47 PM – 1:47 PM
From CAD3337.95
flight booking #76
1:31 AM – 1:31 AM
From USD8733.92
property booking #77
3:36 PM – 3:36 PM
From SGD6127.28
hotel booking #78
12:50 PM – 12:50 PM
From AED6716.18
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": 73,
"userId": 69,
"kind": "hotel",
"referenceId": 2,
"checkInAt": "2026-09-04T07:02:25.596Z",
"checkOutAt": "2026-09-18T07:02:25.596Z",
"status": "cancelled",
"totalAmount": 5039.89,
"currency": "AED",
"createdAt": "2026-06-27T07:02:25.596Z"
},
{
"id": 74,
"userId": 86,
"kind": "flight",
"referenceId": 362,
"checkInAt": "2025-10-27T05:34:44.276Z",
"checkOutAt": "2025-10-27T05:34:44.276Z",
"status": "confirmed",
"totalAmount": 4049.68,
"currency": "USD",
"createdAt": "2025-08-26T05:34:44.276Z"
},
{
"id": 75,
"userId": 200,
"kind": "property",
"referenceId": 61,
"checkInAt": "2025-10-09T13:47:44.188Z",
"checkOutAt": "2025-10-10T13:47:44.188Z",
"status": "cancelled",
"totalAmount": 3337.95,
"currency": "CAD",
"createdAt": "2025-09-23T13:47:44.188Z"
}
],
"meta": {
"page": 4,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/bookings?page=4",
"next": "/api/v1/bookings?page=5",
"prev": "/api/v1/bookings?page=3"
}
}