bookings
bookings
Page 7 of 10.
- hotel booking #145 · 4/4/2027
- property booking #146 · 2/10/2027
- hotel booking #147 · 6/6/2025
- hotel booking #148 · 7/15/2026
- property booking #149 · 10/30/2026
- property booking #150 · 1/17/2026
- hotel booking #151 · 12/4/2026
- flight booking #152 · 9/15/2025
- hotel booking #153 · 11/18/2026
- property booking #154 · 11/6/2025
- property booking #155 · 2/10/2027
- flight booking #156 · 9/5/2026
- hotel booking #157 · 2/8/2027
- flight booking #158 · 8/20/2025
- flight booking #159 · 1/19/2026
- flight booking #160 · 8/6/2026
- flight booking #161 · 3/8/2027
- property booking #162 · 3/26/2026
- flight booking #163 · 12/3/2025
- property booking #164 · 8/3/2025
- property booking #165 · 7/30/2026
- flight booking #166 · 9/7/2026
- flight booking #167 · 7/4/2025
- flight booking #168 · 11/23/2025
- Apr4
hotel booking #145
11:09 PM
- Feb10
property booking #146
3:56 AM
- Jun6
hotel booking #147
12:12 PM
- Jul15
hotel booking #148
5:58 PM
- Oct30
property booking #149
12:56 PM
- Jan17
property booking #150
8:24 PM
- Dec4
hotel booking #151
4:47 PM
- Sep15
flight booking #152
11:47 AM
- Nov18
hotel booking #153
1:45 PM
- Nov6
property booking #154
10:12 AM
- Feb10
property booking #155
7:37 PM
- Sep5
flight booking #156
6:42 PM
- Feb8
hotel booking #157
6:31 AM
- Aug20
flight booking #158
9:34 AM
- Jan19
flight booking #159
6:55 AM
- Aug6
flight booking #160
7:58 PM
- Mar8
flight booking #161
1:56 PM
- Mar26
property booking #162
1:14 PM
- Dec3
flight booking #163
4:33 AM
- Aug3
property booking #164
12:29 PM
- Jul30
property booking #165
3:31 AM
- Sep7
flight booking #166
11:36 PM
- Jul4
flight booking #167
11:06 PM
- Nov23
flight booking #168
4:47 AM
hotel booking #145
11:09 PM – 11:09 PM
From USD7568.57
property booking #146
3:56 AM – 3:56 AM
From GBP8201.79
hotel booking #147
12:12 PM – 12:12 PM
From AED7939.54
hotel booking #148
5:58 PM – 5:58 PM
From GBP5059.00
property booking #149
12:56 PM – 12:56 PM
From GBP991.00
property booking #150
8:24 PM – 8:24 PM
From GBP4935.15
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": 145,
"userId": 81,
"kind": "hotel",
"referenceId": 78,
"checkInAt": "2027-04-04T23:09:44.040Z",
"checkOutAt": "2027-04-13T23:09:44.040Z",
"status": "completed",
"totalAmount": 7568.57,
"currency": "USD",
"createdAt": "2027-03-16T23:09:44.040Z"
},
{
"id": 146,
"userId": 78,
"kind": "property",
"referenceId": 109,
"checkInAt": "2027-02-10T03:56:32.777Z",
"checkOutAt": "2027-02-19T03:56:32.777Z",
"status": "cancelled",
"totalAmount": 8201.79,
"currency": "GBP",
"createdAt": "2027-01-16T03:56:32.777Z"
},
{
"id": 147,
"userId": 12,
"kind": "hotel",
"referenceId": 40,
"checkInAt": "2025-06-06T12:12:59.534Z",
"checkOutAt": "2025-06-09T12:12:59.534Z",
"status": "pending",
"totalAmount": 7939.54,
"currency": "AED",
"createdAt": "2025-04-18T12:12:59.534Z"
}
],
"meta": {
"page": 7,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/bookings?page=7",
"next": "/api/v1/bookings?page=8",
"prev": "/api/v1/bookings?page=6"
}
}