Skip to main content
GET
/
v1
/
admin
/
bookings
List bookings
curl --request GET \
  --url https://{operatorDomain}/v1/admin/bookings \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "01J9ZB...",
      "status": "confirmed",
      "bookingNumber": "BK-100245",
      "productId": "prod_01J9",
      "currency": "EUR",
      "totalAmount": 124900,
      "createdAt": "2023-11-07T05:31:56Z"
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

Staff session or API token issued by your Voyant app.

Query Parameters

status
string
limit
integer
cursor
string

Response

200 - application/json

Booking collection

data
object[]
nextCursor
string | null