v1

latestOpenAPI 3.0.32026-07-131670112.4 KB
Bookings

List bookings

Returns bookings for the authenticated user. Filter by status: confirmed, pending (awaiting host confirmation), cancelled, or rescheduled. Sorted by start time descending.

get/v1/bookings

Query parameters

status'confirmed' | 'pending' | 'cancelled' | 'rescheduled' | 'declined'

Filter by booking status

limitinteger
pageinteger

Response

Default Response

object required

Example response

{
  "bookings": [
    {
      "Id": 88,
      "uid": "bk_abc123def456",
      "event_type_id": "14",
      "user_id": "7",
      "attendee_name": "Taylor Brooks",
      "attendee_email": "taylor@example.com",
      "attendee_timezone": "America/Chicago",
      "start_time": "2026-03-20T15:00:00.000Z",
      "end_time": "2026-03-20T15:30:00.000Z",
      "status": "confirmed",
      "cancel_url": "/cancel/cancel_tok_123",
      "reschedule_url": "/reschedule/res_tok_123"
    }
  ],
  "total": 1
}