Skip to main content
GET
https://api.trillet.ai
/
v1
/
api
/
voices
/
custom
List Custom Voices
curl --request GET \
  --url https://api.trillet.ai/v1/api/voices/custom \
  --header 'x-api-key: <api-key>' \
  --header 'x-workspace-id: <x-workspace-id>'
[
  {
    "_id": "665a1b2c3d4e5f6a7b8c9d0e",
    "name": "Custom Sales Voice",
    "description": "Friendly sales representative voice",
    "language": "en",
    "workspaceId": "664a1b2c3d4e5f6a7b8c9d0e",
    "createdAt": "2024-06-01T09:00:00.000Z"
  }
]

Headers

x-api-key
string
required
API key used for authenticating requests to the API.
x-workspace-id
string
required
Workspace identifier for the API.

Response Fields

voices
array
Array of custom voice objects.
_id
string
Unique identifier for the custom voice.
name
string
Name of the custom voice.
description
string
Description of the custom voice.
language
string
Language code for the voice.
workspaceId
string
Workspace that owns the custom voice.
createdAt
string
Timestamp when the voice was created.
[
  {
    "_id": "665a1b2c3d4e5f6a7b8c9d0e",
    "name": "Custom Sales Voice",
    "description": "Friendly sales representative voice",
    "language": "en",
    "workspaceId": "664a1b2c3d4e5f6a7b8c9d0e",
    "createdAt": "2024-06-01T09:00:00.000Z"
  }
]