bookings
bookings
Page 9 of 10.
- hotel booking #193 · 11/2/2026
- hotel booking #194 · 5/22/2026
- hotel booking #195 · 10/11/2026
- hotel booking #196 · 9/23/2025
- hotel booking #197 · 4/19/2026
- property booking #198 · 6/20/2025
- property booking #199 · 5/13/2027
- hotel booking #200 · 7/16/2025
- property booking #201 · 11/2/2025
- property booking #202 · 3/5/2027
- property booking #203 · 10/31/2026
- property booking #204 · 3/20/2026
- flight booking #205 · 10/13/2026
- flight booking #206 · 6/11/2025
- hotel booking #207 · 10/31/2026
- property booking #208 · 4/23/2027
- flight booking #209 · 7/20/2025
- hotel booking #210 · 4/15/2027
- property booking #211 · 11/18/2025
- property booking #212 · 3/5/2026
- property booking #213 · 2/4/2027
- flight booking #214 · 1/3/2027
- hotel booking #215 · 12/9/2025
- flight booking #216 · 2/9/2026
- Nov2
hotel booking #193
12:16 AM
- May22
hotel booking #194
5:43 AM
- Oct11
hotel booking #195
4:07 PM
- Sep23
hotel booking #196
1:39 AM
- Apr19
hotel booking #197
5:03 PM
- Jun20
property booking #198
2:31 AM
- May13
property booking #199
3:23 AM
- Jul16
hotel booking #200
9:23 AM
- Nov2
property booking #201
2:18 AM
- Mar5
property booking #202
7:51 PM
- Oct31
property booking #203
12:23 AM
- Mar20
property booking #204
1:59 AM
- Oct13
flight booking #205
1:14 AM
- Jun11
flight booking #206
10:16 PM
- Oct31
hotel booking #207
2:32 AM
- Apr23
property booking #208
3:36 PM
- Jul20
flight booking #209
2:45 PM
- Apr15
hotel booking #210
12:25 AM
- Nov18
property booking #211
1:52 PM
- Mar5
property booking #212
12:57 PM
- Feb4
property booking #213
7:57 AM
- Jan3
flight booking #214
10:40 PM
- Dec9
hotel booking #215
5:04 PM
- Feb9
flight booking #216
4:26 PM
hotel booking #193
12:16 AM – 12:16 AM
From AED9999.00
hotel booking #194
5:43 AM – 5:43 AM
From JPY6482.60
hotel booking #195
4:07 PM – 4:07 PM
From JPY371.35
hotel booking #196
1:39 AM – 1:39 AM
From SGD4004.44
hotel booking #197
5:03 PM – 5:03 PM
From JPY3848.95
property booking #198
2:31 AM – 2:31 AM
From JPY7976.80
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": 193,
"userId": 93,
"kind": "hotel",
"referenceId": 63,
"checkInAt": "2026-11-02T00:16:31.221Z",
"checkOutAt": "2026-11-06T00:16:31.221Z",
"status": "completed",
"totalAmount": 9999,
"currency": "AED",
"createdAt": "2026-10-14T00:16:31.221Z"
},
{
"id": 194,
"userId": 116,
"kind": "hotel",
"referenceId": 130,
"checkInAt": "2026-05-22T05:43:44.431Z",
"checkOutAt": "2026-06-01T05:43:44.431Z",
"status": "pending",
"totalAmount": 6482.6,
"currency": "JPY",
"createdAt": "2026-03-15T05:43:44.431Z"
},
{
"id": 195,
"userId": 7,
"kind": "hotel",
"referenceId": 16,
"checkInAt": "2026-10-11T16:07:06.164Z",
"checkOutAt": "2026-10-21T16:07:06.164Z",
"status": "cancelled",
"totalAmount": 371.35,
"currency": "JPY",
"createdAt": "2026-08-22T16:07:06.164Z"
}
],
"meta": {
"page": 9,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/bookings?page=9",
"next": "/api/v1/bookings?page=10",
"prev": "/api/v1/bookings?page=8"
}
}