List reservations

Returns reservations for the authenticated property, newest first.

GET/reservations

Returns reservations for the authenticated property, newest first.

Query parameters

Only reservations in this state. How many to return.

Responses

Status Description
200 A page of reservations.
401 Missing or invalid token.

Example response

{
  "data": [
    {
      "id": "res_8f21",
      "status": "confirmed",
      "guestName": "string",
      "checkIn": "2026-01-01",
      "checkOut": "2026-01-01",
      "total": 0
    }
  ],
  "total": 0
}

Try it

curl -X GET "https://api.example.com/v1/reservations" \
  -H "Authorization: Bearer $TOKEN"