GET
/
v1
/
voice-models
curl --request GET \
  --url https://api.trata.ai/v1/voice-models \
  --header 'Authorization: Bearer <token>'
[
  {
    "voice": {
      "gender": "Male",
      "languageAccent": {
        "language": "English",
        "accent": "American"
      },
      "modelId": "<string>"
    },
    "previewUrl": "<string>",
    "name": "<string>",
    "voiceDescription": "<string>"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successful Response

The response is of type VoiceModel · object[].