Skip to main content
GET
https://api.getmalakai.com/api/
/
api
/
agent-voices
Get All Voices
curl --request GET \
  --url https://api.getmalakai.com/api/api/agent-voices \
  --header 'Authorization: <authorization>' \
  --header 'x-access-token: <x-access-token>'
{
    "responseCode": 2000,
    "message": "Agent voices found",
    "data": [
        {
            "id": "***",
            "voice_id": "***",
            "voice_name": "John Doe",
            "voice_type": "cloned",
            "voice_description": "Record in a quiet space with minimal background noise for clarity results",
            "user_id": "***",
            "url": "***",
            "created_at": "2025-01-21T11:12:27.160Z",
            "updated_at": "2025-01-21T11:12:27.160Z"
        },
    ]
}

Headers

Authorization
string
required
Your API key for authentication. Prefix with Bearer .
x-access-token
string
required
Your access token for authentication.

Response

data
object[]
An array containing all agent objects.
data[].id
string
The unique identifier for the agent voices.
data[].voice_name
string
The full name of the agent voice.
data[].voice_id
string
The voice that the agent will use.
data[].voice_type
string
Female,Male or Cloned voice types.
{
    "responseCode": 2000,
    "message": "Agent voices found",
    "data": [
        {
            "id": "***",
            "voice_id": "***",
            "voice_name": "John Doe",
            "voice_type": "cloned",
            "voice_description": "Record in a quiet space with minimal background noise for clarity results",
            "user_id": "***",
            "url": "***",
            "created_at": "2025-01-21T11:12:27.160Z",
            "updated_at": "2025-01-21T11:12:27.160Z"
        },
    ]
}