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

# Get Cloned Agent Voices

> Retrieve a list of all existing cloned agents voices.

### Headers

<ParamField header="Authorization" type="string" required>
  Your API key for authentication. Prefix with `Bearer `.
</ParamField>

<ParamField header="x-access-token" type="string" required>
  Your access token for authentication.
</ParamField>

### Response

<ResponseField name="data" type="object[]">
  An array containing all agent objects.
</ResponseField>

<ResponseField name="data[].id" type="string">
  The unique identifier for the agent voices.
</ResponseField>

<ResponseField name="data[].voice_name" type="string">
  The full name of the agent voice.
</ResponseField>

<ResponseField name="data[].voice_id" type="string">
  The voice that the agent will use.
</ResponseField>

<ResponseField name="data[].voice_type" type="string">
  Only Cloned voice types will appear here.
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
      "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"
          },
      ]
  }
  ```
</ResponseExample>
