bookings
bookings
Page 6 of 10.
- property booking #121 · 3/16/2026
- property booking #122 · 1/4/2027
- property booking #123 · 9/21/2026
- property booking #124 · 3/13/2027
- flight booking #125 · 1/3/2027
- hotel booking #126 · 10/15/2026
- property booking #127 · 8/7/2026
- flight booking #128 · 9/30/2026
- flight booking #129 · 4/5/2026
- flight booking #130 · 6/4/2026
- hotel booking #131 · 3/5/2027
- hotel booking #132 · 12/2/2025
- property booking #133 · 5/24/2026
- hotel booking #134 · 5/21/2026
- hotel booking #135 · 9/20/2025
- flight booking #136 · 7/4/2026
- property booking #137 · 4/26/2027
- flight booking #138 · 8/26/2025
- property booking #139 · 9/25/2025
- flight booking #140 · 5/18/2027
- hotel booking #141 · 4/30/2026
- hotel booking #142 · 6/26/2025
- flight booking #143 · 5/15/2027
- flight booking #144 · 5/20/2026
- Mar16
property booking #121
6:43 AM
- Jan4
property booking #122
4:16 PM
- Sep21
property booking #123
7:28 AM
- Mar13
property booking #124
10:19 PM
- Jan3
flight booking #125
10:40 PM
- Oct15
hotel booking #126
1:29 PM
- Aug7
property booking #127
2:42 AM
- Sep30
flight booking #128
4:40 AM
- Apr5
flight booking #129
4:48 PM
- Jun4
flight booking #130
7:52 PM
- Mar5
hotel booking #131
4:53 PM
- Dec2
hotel booking #132
5:07 PM
- May24
property booking #133
6:36 AM
- May21
hotel booking #134
6:02 AM
- Sep20
hotel booking #135
11:44 AM
- Jul4
flight booking #136
8:33 PM
- Apr26
property booking #137
12:05 AM
- Aug26
flight booking #138
5:54 PM
- Sep25
property booking #139
8:55 PM
- May18
flight booking #140
7:20 PM
- Apr30
hotel booking #141
1:28 AM
- Jun26
hotel booking #142
2:10 AM
- May15
flight booking #143
3:25 PM
- May20
flight booking #144
1:06 PM
property booking #121
6:43 AM – 6:43 AM
From CAD4553.28
property booking #122
4:16 PM – 4:16 PM
From CAD3922.28
property booking #123
7:28 AM – 7:28 AM
From EUR7351.00
property booking #124
10:19 PM – 10:19 PM
From CAD761.54
flight booking #125
10:40 PM – 10:40 PM
From USD2158.90
hotel booking #126
1:29 PM – 1:29 PM
From CAD196.37
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": 121,
"userId": 209,
"kind": "property",
"referenceId": 189,
"checkInAt": "2026-03-16T06:43:17.763Z",
"checkOutAt": "2026-03-19T06:43:17.763Z",
"status": "cancelled",
"totalAmount": 4553.28,
"currency": "CAD",
"createdAt": "2025-12-24T06:43:17.763Z"
},
{
"id": 122,
"userId": 9,
"kind": "property",
"referenceId": 151,
"checkInAt": "2027-01-04T16:16:09.782Z",
"checkOutAt": "2027-01-15T16:16:09.782Z",
"status": "cancelled",
"totalAmount": 3922.28,
"currency": "CAD",
"createdAt": "2026-11-21T16:16:09.782Z"
},
{
"id": 123,
"userId": 29,
"kind": "property",
"referenceId": 184,
"checkInAt": "2026-09-21T07:28:50.802Z",
"checkOutAt": "2026-10-03T07:28:50.802Z",
"status": "confirmed",
"totalAmount": 7351,
"currency": "EUR",
"createdAt": "2026-07-16T07:28:50.802Z"
}
],
"meta": {
"page": 6,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/bookings?page=6",
"next": "/api/v1/bookings?page=7",
"prev": "/api/v1/bookings?page=5"
}
}