> ## 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 meeting durations

> List duration options for a scheduling link.

<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/durations.yaml GET /meetings/{meeting_sid}/durations
openapi: 3.0.3
info:
  title: NeetoCal Meeting Durations 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: Meeting Durations
    description: APIs to manage meeting duration options for scheduling links.
paths:
  /meetings/{meeting_sid}/durations:
    get:
      tags:
        - Meeting Durations
      summary: List durations for a meeting
      description: List duration options for a scheduling link.
      parameters:
        - $ref: '#/components/parameters/api_key_header'
        - in: path
          name: meeting_sid
          description: >
            The unique identifier (SID) of the scheduling link you want to use.
            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](/api-reference/scheduling-links/list) endpoint, where it
            appears as the `sid` property for each scheduling link in the
            response.
          required: true
          schema:
            type: string
            example: vj5pgkh
      responses:
        '200':
          description: OK - Request succeeded
          content:
            application/json:
              schema:
                type: object
                properties:
                  durations:
                    type: array
                    items:
                      $ref: '#/components/schemas/duration'
                    description: List of all duration options configured for the meeting
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
  schemas:
    duration:
      type: object
      properties:
        id:
          type: string
          description: Unique identifier for the duration.
          example: 4ece6b6b-4b5f-4c15-9122-a85af189198c
        duration:
          type: integer
          minimum: 1
          maximum: 1440
          description: The duration in minutes (1-1440).
          example: 30
        is_default:
          type: boolean
          description: Whether this duration is the default option.
          example: true
        created_at:
          type: string
          format: date-time
          description: Timestamp when the duration was created.
          example: '2025-01-15T10:30:00Z'
        updated_at:
          type: string
          format: date-time
          description: Timestamp when the duration was last updated.
          example: '2025-01-15T10:30:00Z'

````