bookings
bookings
Browse 500 bookings records. Free mock data API by Draftbit — fetch over REST or browse paginated HTML.
- property booking #1 · 10/17/2026
- hotel booking #2 · 7/24/2026
- flight booking #3 · 6/16/2026
- hotel booking #4 · 11/17/2026
- hotel booking #5 · 10/20/2026
- property booking #6 · 9/22/2025
- property booking #7 · 6/5/2025
- property booking #8 · 7/6/2025
- hotel booking #9 · 4/24/2026
- flight booking #10 · 6/5/2026
- flight booking #11 · 1/13/2027
- flight booking #12 · 2/9/2026
- hotel booking #13 · 8/31/2025
- hotel booking #14 · 2/8/2026
- property booking #15 · 8/10/2025
- flight booking #16 · 3/14/2026
- property booking #17 · 5/17/2027
- hotel booking #18 · 6/12/2026
- hotel booking #19 · 3/12/2027
- flight booking #20 · 5/10/2026
- flight booking #21 · 8/4/2025
- property booking #22 · 4/19/2026
- hotel booking #23 · 5/6/2027
- hotel booking #24 · 9/26/2026
- Oct17
property booking #1
4:54 PM
- Jul24
hotel booking #2
4:54 PM
- Jun16
flight booking #3
3:40 PM
- Nov17
hotel booking #4
11:36 AM
- Oct20
hotel booking #5
10:43 PM
- Sep22
property booking #6
6:49 AM
- Jun5
property booking #7
1:54 PM
- Jul6
property booking #8
10:20 PM
- Apr24
hotel booking #9
2:01 AM
- Jun5
flight booking #10
1:21 AM
- Jan13
flight booking #11
5:20 AM
- Feb9
flight booking #12
7:30 AM
- Aug31
hotel booking #13
9:22 AM
- Feb8
hotel booking #14
11:13 PM
- Aug10
property booking #15
8:10 AM
- Mar14
flight booking #16
10:34 PM
- May17
property booking #17
2:58 AM
- Jun12
hotel booking #18
5:13 PM
- Mar12
hotel booking #19
4:48 AM
- May10
flight booking #20
1:26 PM
- Aug4
flight booking #21
2:20 PM
- Apr19
property booking #22
8:37 PM
- May6
hotel booking #23
5:02 PM
- Sep26
hotel booking #24
3:23 AM
property booking #1
4:54 PM – 4:54 PM
From CAD4102.68
hotel booking #2
4:54 PM – 4:54 PM
From USD3662.35
flight booking #3
3:40 PM – 3:40 PM
From SGD3141.86
hotel booking #4
11:36 AM – 11:36 AM
From AED2863.19
hotel booking #5
10:43 PM – 10:43 PM
From EUR688.25
property booking #6
6:49 AM – 6:49 AM
From AUD7808.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": 1,
"userId": 96,
"kind": "property",
"referenceId": 159,
"checkInAt": "2026-10-17T16:54:13.065Z",
"checkOutAt": "2026-10-20T16:54:13.065Z",
"status": "cancelled",
"totalAmount": 4102.68,
"currency": "CAD",
"createdAt": "2026-09-30T16:54:13.065Z"
},
{
"id": 2,
"userId": 39,
"kind": "hotel",
"referenceId": 107,
"checkInAt": "2026-07-24T16:54:15.113Z",
"checkOutAt": "2026-07-31T16:54:15.113Z",
"status": "cancelled",
"totalAmount": 3662.35,
"currency": "USD",
"createdAt": "2026-05-21T16:54:15.113Z"
},
{
"id": 3,
"userId": 163,
"kind": "flight",
"referenceId": 27,
"checkInAt": "2026-06-16T15:40:27.086Z",
"checkOutAt": "2026-06-16T15:40:27.086Z",
"status": "pending",
"totalAmount": 3141.86,
"currency": "SGD",
"createdAt": "2026-05-13T15:40:27.086Z"
}
],
"meta": {
"page": 1,
"limit": 25,
"total": 500,
"totalPages": 20
},
"links": {
"self": "/api/v1/bookings?page=1",
"first": "/api/v1/bookings?page=1",
"last": "/api/v1/bookings?page=20",
"next": "/api/v1/bookings?page=2",
"prev": null
}
}