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

# Get Uploaded Voices

> Allows you to get list of all uploaded voices.

## Request

Send a `POST` request to below endpoint to return all uploaded voices.

```curl curl theme={null}
--request POST 'https://modelslab.com/api/v6/voice/voice_list' \
```

## Body

```json json theme={null}
{ 
    "key": ""
}
```


## OpenAPI

````yaml POST /voice/voice_list
openapi: 3.1.0
info:
  title: ModelsLab Voice API
  description: >-
    A comprehensive API for AI-driven voice and audio generation including
    text-to-speech, voice cloning, music generation, and audio processing
    capabilities
  license:
    name: MIT
  version: 6.0.0
servers:
  - url: https://modelslab.com/api/v6
security: []
paths:
  /voice/voice_list:
    post:
      summary: Get all uploaded voices
      description: Retrieves all uploaded voices for the account
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VoiceListRequest'
      responses:
        '200':
          description: Voice list response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VoiceListResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    VoiceListRequest:
      type: object
      required:
        - key
      properties:
        key:
          type: string
          description: Your API Key used for request authorization
        type:
          type: string
          enum:
            - manual
            - trained
            - voice_cover
          default: manual
          description: Type of voices to retrieve
    VoiceListResponse:
      type: object
      properties:
        status:
          type: string
          enum:
            - success
            - error
          description: Status of the request
        voices:
          type: array
          items:
            $ref: '#/components/schemas/VoiceItem'
          description: Array of available voices
    Error:
      type: object
      required:
        - status
        - message
      properties:
        status:
          type: string
          enum:
            - error
        message:
          type: string
          description: Error message description
    VoiceItem:
      type: object
      properties:
        voice_id:
          type: string
          description: Unique identifier for the voice
        name:
          type: string
          description: Display name of the voice
        language:
          type: string
          description: Language of the voice

````