> ## 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 Voice

> Returns a single voice based on the ID supplied



## OpenAPI

````yaml openapi-voices GET /voices/{id}
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/{id}:
    get:
      description: Returns a single voice based on the ID supplied
      parameters:
        - name: id
          in: path
          description: ID of voice to return
          required: true
          schema:
            type: integer
            format: int64
      responses:
        '200':
          description: Voice response
          content:
            application/json:
              schema:
                type: object
                properties:
                  msg:
                    type: string
                    example: Voice retrieved successfully
                    description: Message from the API
                  err:
                    type: boolean
                    example: false
                    description: Error flag
                  results:
                    $ref: '#/components/schemas/Voice'
                    type: object
                    description: Voice object
        '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'.

````