Skip to main content
GET
/
v1
/
availability
cURL
curl --request GET \
  --url https://api.novacal.io/v1/availability \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "availability": {
      "2026-03-23": [
        {
          "start": "2026-03-23T09:00:00+00:00",
          "end": "2026-03-23T17:00:00+00:00"
        }
      ],
      "2026-03-24": [
        {
          "start": "2026-03-24T10:00:00+00:00",
          "end": "2026-03-24T15:00:00+00:00"
        }
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

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

Query Parameters

start
string<date>
required

Start date for the requested range

end
string<date>
required

End date for the requested range

event_type_id
integer
required

Event type ID used to calculate availability

Response

200 - application/json

Availability response

success
boolean
required

Indicates whether the request was successful

Example:

true

data
object
required