Skip to main content
GET
/
v2.0
/
calendar
/
meetings
/
available
Available Meetings
curl --request GET \
  --url https://api.lofty.com/v2.0/calendar/meetings/available \
  --header 'Authorization: <authorization>'
{
  "data": {
    "total": 123,
    "slots": [
      {
        "startTime": "<string>",
        "endTime": "<string>",
        "startTimeMs": 123,
        "endTimeMs": 123
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://developer.lofty.com/llms.txt

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

Headers

Authorization
string
required

Bearer [access_token]

Query Parameters

startTime
string

Start time in ISO 8601 format with offset. Preferred over startTimeMs when both are provided.

endTime
string

End time in ISO 8601 format with offset. Preferred over endTimeMs when both are provided.

startTimeMs
integer<int64>

Start time as Unix timestamp in milliseconds. Used when startTime is not provided.

endTimeMs
integer<int64>

End time as Unix timestamp in milliseconds. Used when endTime is not provided.

timeZoneCode
string

IANA timezone identifier. When omitted, the caller's configured timezone is used.

limit
integer<int32>
default:10

Maximum number of slots to return.

Required range: x >= 1

Response

Available meeting slots with total count.

Response envelope for GET /v2.0/calendar/meetings/available. Wraps the available meeting slots under the 'data' field.

data
object

Available meeting time slots response