Skip to main content
GET
/
meetings
/
{meeting_sid}
/
slots
List available slots
curl --request GET \
  --url https://{your-subdomain}.neetocal.com/api/external/v2/meetings/{meeting_sid}/slots \
  --header 'X-Api-Key: <x-api-key>'
{
  "slots": [
    {
      "date": "<string>",
      "day": 123,
      "slots": {}
    }
  ]
}
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_sid
string
required

The unique identifier (SID) of the scheduling link. You can get sid in different ways. Visit the scheduling link page and then click on "Settings" > "Show SID". That will give you sid. You can also get this from the response of the List scheduling links endpoint.

Example:

"vj5pgkh"

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[]