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

# Get Voices

> Returns all voices from the system that the user has access to



## OpenAPI

````yaml openapi-voices GET /voices
openapi: 3.0.1
info:
  title: Puretalk AI
  description: Api Documentation for Puretalk AI
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.puretalk.ai/api
security:
  - ApiKeyAuth: []
paths:
  /voices:
    get:
      description: Returns all voices from the system that the user has access to
      parameters:
        - name: page
          in: query
          description: The page number to return
          schema:
            type: integer
            format: int32
        - name: limit
          in: query
          description: The maximum number of results to return
          schema:
            type: integer
            format: int32
      responses:
        '200':
          description: Voices response
          content:
            application/json:
              schema:
                type: object
                properties:
                  count:
                    type: integer
                    description: Total number of voices
                    format: int32
                    example: 100
                  next:
                    type: string
                    description: Next page URL
                    nullable: true
                    example: https://api.puretalk.ai/api/voices?page=2
                  previous:
                    type: string
                    nullable: true
                    description: Previous page URL
                    example: https://api.puretalk.ai/api/voices?page=1
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/Voice'
        '404':
          description: Not Found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Voice:
      type: object
      description: >-
        A voice object representing a text-to-speech voice with its properties
        and metadata
      properties:
        voice_id:
          type: string
          description: Unique identifier for the voice model
          example: Puretalk Model V4
        name:
          type: string
          description: Display name of the voice
          example: Seven
        avatar:
          type: string
          description: URL to the voice's avatar image
          example: >-
            https://puretalkstorageprod.blob.core.windows.net/puretalk-public/puretalk-57f71505-0c31-4032-b9e8-f0985d7ae43d-webp
        gender:
          type: string
          description: Gender of the voice (e.g., 'male', 'female')
          example: female
        demo_audio_url:
          type: string
          description: URL to a sample audio file demonstrating the voice
          example: >-
            https://puretalkstorageprod.blob.core.windows.net/puretalk-public/puretalk-b6dfdb86-6bf3-4851-b134-b525f0a13628-mp3
        is_cloned:
          type: boolean
          description: Indicates if this is a cloned voice
          example: false
        language:
          type: string
          description: Language code for the voice (e.g., 'en' for English)
          example: en
        description:
          type: string
          description: Optional description of the voice
          nullable: true
          example: This is a description of the voice
    Error:
      required:
        - err
        - msg
      type: object
      properties:
        err:
          type: boolean
        msg:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY
      description: >-
        Authorization header containing API key. You can find your API key in
        the dashboard under 'API Keys'.

````