# Create a Voice

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

Creates a new voice and adds it to the user's collection of voices.

#### Headers

| Name                                           | Type   | Description         |
| ---------------------------------------------- | ------ | ------------------- |
| Content-Type<mark style="color:red;">\*</mark> | String | multipart/form-data |

#### Request Body

| Name                                                 | Type   | Description |
| ---------------------------------------------------- | ------ | ----------- |
| audio<mark style="color:red;">\*</mark>              | File   |             |
| voice\_description<mark style="color:red;">\*</mark> | String |             |
| voice\_name<mark style="color:red;">\*</mark>        | String |             |

{% tabs %}
{% tab title="201: Created " %}

```json
{
    "status": "success",
    "message": "Voice created successfully."
}
```

{% endtab %}

{% tab title="400: Bad Request " %}

```json
{
    "status": "error",
    "message": "Error creating voice." {error_message}   
}
```

{% endtab %}
{% endtabs %}
