> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tetherai.ca/llms.txt
> Use this file to discover all available pages before exploring further.

# List available AI voices from the configured provider

> Fetches the catalog of TTS voices from the org's configured AI voice provider (e.g. ElevenLabs). Used by the agent-builder UI to pick a voice for a Prompt.



## OpenAPI

````yaml /api-reference/openapi.yaml get /api/calls/voice-ai/voices
openapi: 3.0.3
info:
  title: Tether Relay and Tether API
  version: 1.0.0
  description: >-
    Route-derived OpenAPI contract generated from tether-relay backend sources.
    Regenerate with scripts/sync-openapi-from-backend.mjs.
servers:
  - url: https://your-instance.example.com
    description: Production
  - url: http://localhost:2212
    description: Local API service
security: []
tags:
  - name: AI
  - name: Applications
  - name: Approval
  - name: Auth
  - name: Automations
  - name: Calls
  - name: Campaigns
  - name: Contact Analytics
  - name: Contact Metrics
  - name: Contact Notes
  - name: Contacts
  - name: Conversation Monitor
  - name: Conversations
  - name: Departments
  - name: Email
  - name: Escalation Dashboard
  - name: Event Logs
  - name: Google Sheets
  - name: Marketplace
  - name: Messages
  - name: Notification Sounds
  - name: Notifications
  - name: Org Snapshots
  - name: Organizations
  - name: Outreach
  - name: Outreach Metrics
  - name: Outreach Sources
  - name: Pipelines
  - name: Processes
  - name: Prompts
  - name: Reminders
  - name: Sms
  - name: Templates
  - name: Traces
  - name: Training
  - name: Upload
  - name: User Snapshots
  - name: Users
  - name: Vertical
  - name: Webchats
  - name: Webhook
paths:
  /api/calls/voice-ai/voices:
    get:
      tags:
        - Calls
      summary: List available AI voices from the configured provider
      description: >-
        Fetches the catalog of TTS voices from the org's configured AI voice
        provider (e.g. ElevenLabs). Used by the agent-builder UI to pick a voice
        for a Prompt.
      operationId: get_calls_voice_ai_voices
      responses:
        '200':
          description: Available voices
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CallsVoicesResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CallsErrorResponse'
        '500':
          description: Provider error or no provider configured
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CallsErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    CallsVoicesResponse:
      type: object
      properties:
        voices:
          type: array
          description: >-
            Provider-shaped voice descriptors; ElevenLabs voices include
            `voice_id`, `name`, `labels`, etc.
          items:
            type: object
            additionalProperties: true
      required:
        - voices
      additionalProperties: true
      example:
        voices:
          - voice_id: 21m00Tcm4TlvDq8ikWAM
            name: Rachel
            labels:
              accent: american
              age: young
    CallsErrorResponse:
      type: object
      description: >-
        Error envelope used across most calls endpoints. Some endpoints wrap a
        string error; validation endpoints (parseContractInput) return a
        structured `error` object with `code` and `details`.
      properties:
        success:
          type: boolean
          enum:
            - false
        error:
          oneOf:
            - type: string
            - type: object
              properties:
                code:
                  type: string
                message:
                  type: string
                details:
                  type: array
                  items:
                    type: object
                    additionalProperties: true
              additionalProperties: true
        code:
          type: string
          description: >-
            Stable error code on certain errors (e.g. `NUMBER_NOT_ON_TRUNK`,
            `AGENT_NOT_SYNCED`, `OUTBOUND_IN_FLIGHT`).
      additionalProperties: true
      example:
        success: false
        error: Call not found
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````