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

# Get Voices

> Retrieves a list of all available high-fidelity voices.



## OpenAPI

````yaml GET /api/v1/get_voices
openapi: 3.1.0
info:
  title: Vox API
  description: >-
    API documentation for Vox (timepay.ai) - The hyper-realistic emotional
    text-to-speech platform.
  version: 1.0.0
servers:
  - url: https://api.tts.timepay.ai
security:
  - bearerAuth: []
paths:
  /api/v1/get_voices:
    get:
      summary: Get Available Voices
      description: Retrieves a list of all available high-fidelity voices.
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Voice'
                example:
                  - id: Ogbs15oBevLzXsUuTtA1
                    name: Kartik
                    description: >-
                      Warm, steady, and confident male voice suitable for
                      banking.
                    languages:
                      - English
                      - Hindi
                    gender: male
components:
  schemas:
    Voice:
      type: object
      properties:
        id:
          type: string
          example: Ogbs15oBevLzXsUuTtA1
        name:
          type: string
          example: Kartik
        description:
          type: string
          example: >-
            Warm, steady, and confident male voice suitable for banking,
            reminders, and formal flows.
        languages:
          type: array
          items:
            type: string
          example:
            - English
            - Hindi
            - Marathi
        gender:
          type: string
          enum:
            - male
            - female
          example: male
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````