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

# List Voices



## OpenAPI

````yaml get /v1/voices/list
openapi: 3.0.2
info:
  title: Vocode Hosted API
  description: |2-

            Vocode's Hosted API helps you automate phone calls in minutes. 🚀

            ## Numbers

            You can buy phone lines and place agents on them.

            ## Calls

            You can start, end, and get information about calls.
            
  termsOfService: http://example.com/terms/
  contact:
    name: Support
    email: support@vocode.dev
  version: 1.0.0
servers:
  - url: https://api.vocode.dev
    description: Production environment
  - url: https://staging.vocode.dev
    description: Staging environment
security: []
tags:
  - name: numbers
    description: Operations with phone numbers.
  - name: calls
    description: Manage calls.
paths:
  /v1/voices/list:
    get:
      tags:
        - voices
      summary: List Voices
      operationId: list_voices
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                title: Response List Voices V1 Voices List Get
                type: array
                items:
                  anyOf:
                    - $ref: '#/components/schemas/AzureVoice'
                    - $ref: '#/components/schemas/RimeVoice'
                    - $ref: '#/components/schemas/ElevenLabsVoice'
      security:
        - HTTPBearer: []
components:
  schemas:
    AzureVoice:
      title: AzureVoice
      required:
        - id
        - user_id
        - voice_name
      type: object
      properties:
        id:
          title: Id
          type: string
          format: uuid
        user_id:
          title: User Id
          type: string
          format: uuid
        type:
          allOf:
            - $ref: '#/components/schemas/VoiceType'
          default: voice_azure
        voice_name:
          title: Voice Name
          type: string
        pitch:
          title: Pitch
          type: integer
          default: 0
        rate:
          title: Rate
          type: integer
          default: 15
    RimeVoice:
      title: RimeVoice
      required:
        - id
        - user_id
        - speaker
      type: object
      properties:
        id:
          title: Id
          type: string
          format: uuid
        user_id:
          title: User Id
          type: string
          format: uuid
        type:
          allOf:
            - $ref: '#/components/schemas/VoiceType'
          default: voice_rime
        speaker:
          title: Speaker
          type: string
    ElevenLabsVoice:
      title: ElevenLabsVoice
      required:
        - id
        - user_id
        - voice_id
        - api_key
      type: object
      properties:
        id:
          title: Id
          type: string
          format: uuid
        user_id:
          title: User Id
          type: string
          format: uuid
        type:
          allOf:
            - $ref: '#/components/schemas/VoiceType'
          default: voice_eleven_labs
        voice_id:
          title: Voice Id
          type: string
        stability:
          title: Stability
          type: number
        similarity_boost:
          title: Similarity Boost
          type: number
        api_key:
          title: Api Key
          type: string
    VoiceType:
      title: VoiceType
      enum:
        - voice_base
        - voice_azure
        - voice_rime
        - voice_eleven_labs
      type: string
      description: An enumeration.
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````