Create Voice

POST https://app.resemble.ai/api/v2/voices

Create a new custom voice. Requires Business or Enterprise plan.

FieldTypeRequiredNotes
namestringVoice name (max 256 characters).
voice_typestringVoice type (rapid_voice or professional). Default: professional.
languagestringDefault language code. Default: en-US.
descriptionstringVoice description.
dataset_urlstringURL to training dataset (max 30,000 characters).
callback_uristringCallback URL for training completion (max 1000 characters).
$curl --request POST 'https://app.resemble.ai/api/v2/voices' \
> -H 'Authorization: Bearer YOUR_API_TOKEN' \
> -H 'Content-Type: application/json' \
> --data '{
> "name": "Chef",
> "language": "en-US",
> "voice_type": "professional",
> "dataset_url": "https://example.com/dataset.zip",
> "callback_uri": "https://example.com/webhooks/resemble"
> }'
1{
2 "success": true,
3 "item": {
4 "uuid": "VOICE_UUID",
5 "name": "Chef",
6 "status": "pending",
7 "voice_type": "professional",
8 "default_language": "en-US",
9 "description": null,
10 "created_at": "2024-01-15T10:30:00Z",
11 "updated_at": "2024-01-15T10:30:00Z"
12 }
13}

For rapid voices, dataset_url must be a valid audio file. Voice creation respects plan limits for professional and rapid voices.