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

# List voices



## OpenAPI

````yaml GET /v1/accounts/{accountId}/voice-library
openapi: 3.1.0
info:
  title: PolyAI Agents API
  version: 1.0.11
  description: Manage PolyAI agents, telephony, deployments, and real-time configs.
servers:
  - url: https://api.us.poly.ai
    description: US region
  - url: https://api.eu.poly.ai
    description: EU region
  - url: https://api.uk.poly.ai
    description: UK region
  - url: https://api.studio.poly.ai
    description: Studio region
security:
  - polyApiKey: []
paths:
  /v1/accounts/{accountId}/voice-library:
    parameters:
      - name: accountId
        in: path
        required: true
        schema:
          type: string
    get:
      tags:
        - Voice Library
      summary: List all voices in the account's voice library
      parameters:
        - name: language
          in: query
          required: false
          schema:
            type: string
          description: Filter by voice metadata language, e.g. 'en-US'
        - name: gender
          in: query
          required: false
          schema:
            enum:
              - male
              - female
              - neutral
            type: string
          description: Filter by voice metadata gender
        - name: provider
          in: query
          required: false
          schema:
            type: string
          description: Filter by TTS provider, e.g. 'GOOGLE', 'ELEVENLABS'
        - name: isPolyVoice
          in: query
          required: false
          schema:
            type: boolean
          description: If set, restrict to (or exclude) Poly's curated voices
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListVoicesResponse'
        '401':
          description: Unauthorized – missing or invalid API key
        '403':
          description: Forbidden – insufficient permissions
        '404':
          description: Resource not found
components:
  schemas:
    ListVoicesResponse:
      description: Response for GET /voice-library.
      type: object
      properties:
        voices:
          type: array
          items:
            $ref: '#/components/schemas/VoiceResponse'
      required:
        - voices
    VoiceResponse:
      description: A single voice as returned by the public API.
      type: object
      properties:
        id:
          description: Unique voice identifier
          type: string
        name:
          description: Human-readable voice name
          type: string
        provider:
          description: TTS provider
          type: string
        providerVoiceId:
          description: Voice ID from the TTS provider
          type: string
        config:
          description: Provider-specific voice config
          type: object
        metadata:
          description: Additional voice metadata
          type: object
        isPolyVoice:
          description: True if this is a Poly-curated voice (vs account-owned)
          default: false
          type: boolean
      required:
        - id
        - name
        - provider
        - providerVoiceId
        - config
  securitySchemes:
    polyApiKey:
      type: apiKey
      in: header
      name: X-API-KEY

````