Skip to main content
GET
/
calendars
/
{event_id}
Event Calendar Overview
curl --request GET \
  --url https://api.calendbook.com/calendars/{event_id} \
  --header 'Authorization: Bearer <token>'
{
  "timezone": "<string>",
  "availability": {
    "disabled_dates": {
      "days": [
        "2023-12-25"
      ],
      "months": [
        "<string>"
      ]
    },
    "first_available_date": "2023-11-07T05:31:56Z",
    "weekly": {
      "week_days": {
        "mon": true,
        "tue": true,
        "wed": true,
        "thu": true,
        "fri": true,
        "sat": true,
        "sun": true
      }
    },
    "last_available_date": "2023-11-07T05:31:56Z",
    "available_dates": [
      "2023-12-25"
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

event_id
string
required

Query Parameters

start_date
string<date>
timezone
string
required
period
string

Filter for the calendar overview. Format is {number}{unit}, where 'd' = days, 'w' = weeks, 'm' = months. Examples: 1d (next 1 day), 1w (next 1 week), 1m (next 1 month). Maximum allowed period is less than 2 months.

Response

Calendar availability details

timezone
string
availability
object