Skip to main content
GET
/
calendar
/
dates
Get calendar dates
curl --request GET \
  --url https://spaportal.cz/api/v1/calendar/dates \
  --header 'Authorization: Bearer <token>'
[
  {
    "date": "2026-12-01",
    "selectable": false,
    "availability": "NOT_AVAILABLE",
    "price": null
  },
  {
    "date": "2026-12-02",
    "selectable": true,
    "availability": "ON_DEMAND",
    "price": {
      "is_final": true,
      "cs_CZ": {
        "amount": 1590,
        "currency": "CZK"
      },
      "de": {
        "amount": 61.2857,
        "currency": "EUR"
      }
    }
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Accept-Language
string

Comma-separated list of languages to include.

Example:

"cs_CZ,de"

Query Parameters

visit_type_id
integer

Visit type ID.

hotel_id
integer

Hotel ID.

room_type_id
integer

Room type ID.

destination_id
integer

Destination ID.

guests
integer

Number of guests.

Required range: 1 <= x <= 2
date_from
string<date>

Start date in YYYY-MM-DD format.

date_to
string<date>

End date in YYYY-MM-DD format.

Response

Calendar dates with availability and optional price data.

date
string<date>
selectable
boolean | null
availability
enum<string>
Available options:
NOT_AVAILABLE,
AVAILABLE,
ON_DEMAND
price
object