> ## 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.

# List available slots

> List available slots for a scheduling link for a given month.

<Warning>This endpoint is part of API v1, which is deprecated. Please use the [v2 API](/getting-started/introduction) instead.</Warning>

<Info>Replace `{your-subdomain}` with your workspace’s subdomain. <br /> Learn how to find your subdomain in [Workspace subdomain](/getting-started/workspace-subdomain).</Info>


## OpenAPI

````yaml bundled-v1/slots.yaml GET /slots/{meeting_slug}
openapi: 3.0.3
info:
  title: NeetoCal Slots APIs
  version: 1.0.0
servers:
  - description: NeetoCal APIs
    url: https://{your-subdomain}.neetocal.com/api/external/v1
    variables:
      your-subdomain:
        default: spinkart
        description: >-
          Replace **spinkart** with your [workspace's
          subdomain](/getting-started/workspace-subdomain).
security: []
tags:
  - name: Slots
    description: APIs to manage slots availability of a scheduling link.
paths:
  /slots/{meeting_slug}:
    get:
      tags:
        - Slots
      summary: List available slots
      description: List available slots for a scheduling link for a given month.
      parameters:
        - $ref: '#/components/parameters/api_key_header'
        - in: path
          name: meeting_slug
          description: Slug of the scheduling link.
          required: true
          schema:
            type: string
            example: meeting-with-oliver-smith
        - in: query
          name: time_zone
          description: Time zone in which to check available slots.
          required: true
          schema:
            type: string
            example: Asia/Kolkata
        - in: query
          name: year
          description: Year for which to check available slots.
          required: true
          schema:
            type: string
            example: '2025'
        - in: query
          name: month
          description: Month for which to check available slots.
          required: true
          schema:
            type: string
            example: '11'
        - in: query
          name: day
          description: >-
            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.
          required: false
          schema:
            type: string
            example: '21'
      responses:
        '200':
          description: OK - Request succeeded
          content:
            application/json:
              schema:
                type: object
                properties:
                  slots:
                    type: array
                    items:
                      type: object
                      properties:
                        date:
                          type: string
                        day:
                          type: integer
                        slots:
                          type: object
                          additionalProperties:
                            type: object
                            properties:
                              start_time:
                                type: string
                              end_time:
                                type: string
                              count:
                                type: integer
components:
  parameters:
    api_key_header:
      in: header
      name: X-Api-Key
      description: >-
        Use the X-Api-Key header to provide your workspace API key. Refer to
        [Authentication](/getting-started/authentication) for more information.
      required: true
      schema:
        type: string

````