example-data.com

bookings

bookings

Page 7 of 10.

Apr
4
Sun

hotel booking #145

11:09 PM – 11:09 PM

From USD7568.57

Feb
10
Wed

property booking #146

3:56 AM – 3:56 AM

From GBP8201.79

Jun
6
Fri

hotel booking #147

12:12 PM – 12:12 PM

From AED7939.54

Jul
15
Wed

hotel booking #148

5:58 PM – 5:58 PM

From GBP5059.00

Oct
30
Fri

property booking #149

12:56 PM – 12:56 PM

From GBP991.00

Jan
17
Sat

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"
  }
}
Draftbit