Skip to main content
GET
/
slots
/
{meeting_slug}
List available slots
curl --request GET \
  --url https://{your-subdomain}.neetocal.com/api/external/v1/slots/{meeting_slug} \
  --header 'X-Api-Key: <x-api-key>'
{
  "slots": [
    {
      "date": "<string>",
      "day": 123,
      "slots": {}
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://apidocs.neetocal.com/llms.txt

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

This endpoint is part of API v1, which is deprecated. Please use the v2 API instead.
Replace {your-subdomain} with your workspace’s subdomain.
Learn how to find your subdomain in Workspace subdomain.

Headers

X-Api-Key
string
required

Use the X-Api-Key header to provide your workspace API key. Refer to Authentication for more information.

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

slots
object[]