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

# Get list of voices available for calls

> Get list of voices available for calls



## OpenAPI

````yaml openapi.json get /v1/voice-models
openapi: 3.1.0
info:
  title: Trata AI API
  description: >-
    Human like conversation to answer calls, drive engagement, automate
    follow-ups & schedule bookings 24/7  with end to end integrations ensuring
    you never miss a sales enquiry.
  version: 1.0.0
servers:
  - url: https://api.trata.ai
    description: Production
  - url: http://localhost:8000
    description: Development
security: []
paths:
  /v1/voice-models:
    get:
      tags:
        - VoiceModels
      summary: Get list of voices available for calls
      description: Get list of voices available for calls
      operationId: listVoiceModelsV1
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/VoiceModel'
                type: array
                title: Response Listvoicemodelsv1
      security:
        - HTTPBearer: []
components:
  schemas:
    VoiceModel:
      properties:
        voice:
          $ref: '#/components/schemas/Voice-Output'
        previewUrl:
          type: string
          title: Previewurl
        name:
          type: string
          title: Name
        voiceDescription:
          type: string
          title: Voicedescription
      type: object
      required:
        - voice
        - previewUrl
        - name
        - voiceDescription
      title: VoiceModel
    Voice-Output:
      properties:
        gender:
          type: string
          enum:
            - Male
            - Female
            - Neutral
          title: Gender
        languageAccent:
          $ref: '#/components/schemas/LanguageAccentCombo'
        modelId:
          type: string
          title: Modelid
      type: object
      required:
        - gender
        - languageAccent
        - modelId
      title: Voice
    LanguageAccentCombo:
      properties:
        language:
          $ref: '#/components/schemas/Language'
        accent:
          $ref: '#/components/schemas/Accent'
      type: object
      required:
        - language
        - accent
      title: LanguageAccentCombo
    Language:
      type: string
      enum:
        - English
        - Spanish
        - Hindi
      title: Language
    Accent:
      type: string
      enum:
        - American
        - Indian
        - Australian
        - British
        - Hindi
      title: Accent
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````