GET
/
slots
/
{meeting_slug}
List all available slots
curl --request GET \
  --url https://{workspace}.neetocal.com/api/external/v1/slots/{meeting_slug} \
  --header 'X-Api-Key: <x-api-key>'
{
  "slots": [
    {
      "date": "<string>",
      "day": 123,
      "slots": {}
    }
  ]
}
Replace {your-workspace} with your workspace’s subdomain.
Learn how to find your subdomain in Identifying your subdomain.

Headers

X-Api-Key
string
required

You can generate an API key from the NeetoCal API Keys dashboard.

Path Parameters

meeting_slug
string
required

Slug of the scheduling link.

Example:

"meeting-with-oliver-smith"

Query Parameters

time_zone
string
required

Time zone in which to check available slots.

Example:

"Asia/Kolkata"

year
string
required

Year for which to check available slots.

Example:

"2025"

month
string
required

Month for which to check available slots.

Example:

"11"

day
string

The day of the month to check for available slots. If omitted, slots for all days in the month will be returned. If provided, only slots for the specified day will be included.

Example:

"21"

Response

200
application/json

OK - Request succeeded

The response is of type object.