> For the complete documentation index, see [llms.txt](https://docs.autogon.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.autogon.ai/autogon-qore/voice-cloning/get-voices.md).

# Get Voices

## Retrieves a list of created voices for a user.

<mark style="color:blue;">`GET`</mark> `https://api.autogon.ai/api/v1/services/voice-cloning/voices/list/`

#### Headers

| Name                                           | Type | Description      |
| ---------------------------------------------- | ---- | ---------------- |
| Content-Type<mark style="color:red;">\*</mark> |      | application/json |

{% tabs %}
{% tab title="200: OK Paginated List of Voices" %}

```json
{
    "count": 2,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 001,
            "user": "test-user@email.com",
            "audio_url": "https://storage.autogon.ai/test-voice.mp3",
            "voice_name": "Test Voice 1",
            "voice_description": "Test Voice Desc 1",
            "date_created": "2023-11-22T12:13:16.820943Z"
        },
        {
            "id": 002,
            "user": "test-user@email.com",
            "audio_url": "https://storage.autogon.ai/test-voice.mp3",
            "voice_name": "Test Voice 2",
            "voice_description": "Test Voice Desc 2",
            "date_created": "2023-11-22T12:13:16.820943Z"
        }
    ]
}
```

{% endtab %}
{% endtabs %}
