bookings
bookings
Page 2 of 10.
- property booking #25 · 7/4/2025
- flight booking #26 · 11/3/2026
- flight booking #27 · 4/30/2027
- hotel booking #28 · 2/25/2027
- property booking #29 · 4/29/2027
- flight booking #30 · 7/22/2025
- property booking #31 · 10/14/2026
- hotel booking #32 · 1/3/2027
- hotel booking #33 · 10/22/2025
- flight booking #34 · 11/21/2025
- flight booking #35 · 7/31/2025
- hotel booking #36 · 8/14/2026
- flight booking #37 · 6/11/2026
- hotel booking #38 · 8/23/2025
- property booking #39 · 12/17/2025
- flight booking #40 · 1/13/2027
- flight booking #41 · 9/30/2025
- flight booking #42 · 4/19/2027
- hotel booking #43 · 5/1/2027
- hotel booking #44 · 4/10/2027
- hotel booking #45 · 6/26/2026
- property booking #46 · 10/13/2026
- flight booking #47 · 11/11/2026
- hotel booking #48 · 6/4/2026
- Jul4
property booking #25
7:10 AM
- Nov3
flight booking #26
4:26 PM
- Apr30
flight booking #27
8:36 PM
- Feb25
hotel booking #28
11:44 AM
- Apr29
property booking #29
12:57 AM
- Jul22
flight booking #30
8:08 PM
- Oct14
property booking #31
10:58 AM
- Jan3
hotel booking #32
12:19 AM
- Oct22
hotel booking #33
4:12 AM
- Nov21
flight booking #34
10:09 PM
- Jul31
flight booking #35
5:19 PM
- Aug14
hotel booking #36
11:03 PM
- Jun11
flight booking #37
6:40 PM
- Aug23
hotel booking #38
3:03 PM
- Dec17
property booking #39
4:59 PM
- Jan13
flight booking #40
5:20 AM
- Sep30
flight booking #41
8:12 PM
- Apr19
flight booking #42
5:54 AM
- May1
hotel booking #43
2:38 PM
- Apr10
hotel booking #44
3:08 PM
- Jun26
hotel booking #45
2:27 PM
- Oct13
property booking #46
4:14 AM
- Nov11
flight booking #47
6:03 PM
- Jun4
hotel booking #48
4:57 AM
property booking #25
7:10 AM – 7:10 AM
From AUD2299.79
flight booking #26
4:26 PM – 4:26 PM
From EUR7832.58
flight booking #27
8:36 PM – 8:36 PM
From CAD7791.11
hotel booking #28
11:44 AM – 11:44 AM
From JPY129.83
property booking #29
12:57 AM – 12:57 AM
From EUR2407.03
flight booking #30
8:08 PM – 8:08 PM
From GBP5409.58
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": 25,
"userId": 154,
"kind": "property",
"referenceId": 152,
"checkInAt": "2025-07-04T07:10:42.825Z",
"checkOutAt": "2025-07-17T07:10:42.825Z",
"status": "confirmed",
"totalAmount": 2299.79,
"currency": "AUD",
"createdAt": "2025-07-03T07:10:42.825Z"
},
{
"id": 26,
"userId": 82,
"kind": "flight",
"referenceId": 79,
"checkInAt": "2026-11-03T16:26:31.897Z",
"checkOutAt": "2026-11-03T16:26:31.897Z",
"status": "completed",
"totalAmount": 7832.58,
"currency": "EUR",
"createdAt": "2026-09-25T16:26:31.897Z"
},
{
"id": 27,
"userId": 58,
"kind": "flight",
"referenceId": 213,
"checkInAt": "2027-04-30T20:36:49.639Z",
"checkOutAt": "2027-04-30T20:36:49.639Z",
"status": "confirmed",
"totalAmount": 7791.11,
"currency": "CAD",
"createdAt": "2027-02-15T20:36:49.639Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 500,
"totalPages": 21
},
"links": {
"self": "/api/v1/bookings?page=2",
"next": "/api/v1/bookings?page=3",
"prev": "/api/v1/bookings?page=1"
}
}