Skip to main content
POST
/
v1
/
calendar
/
get-available-times
Get Available Times
curl --request POST \
  --url https://api.example.com/v1/calendar/get-available-times \
  --header 'Content-Type: application/json' \
  --data '
{
  "start_time": "2023-11-07T05:31:56Z",
  "end_time": "2023-11-07T05:31:56Z",
  "timezone": "<string>",
  "selected_calendar_ids": [
    "<string>"
  ]
}
'
{
  "busy_windows": [
    {
      "start": "2023-11-07T05:31:56Z",
      "end": "2023-11-07T05:31:56Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.atonom.ai/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
start_time
string<date-time>

Start of the range to search for free time.

end_time
string<date-time>

End of the range to search for free time.

timezone
string

IANA timezone name for interpreting local slots (e.g. America/Los_Angeles).

selected_calendar_ids
string[]

Calendars to consider when computing busy blocks; empty may mean default calendar.

Response

OK

busy_windows
object[]

Busy intervals merged across the selected calendars.