cURL
curl --request PUT \ --url https://api.buena.ai/api/v2/voice-clones/{voiceId} \ --header 'Content-Type: <content-type>' \ --header 'x-api-key: <x-api-key>' \ --data '{ "name": "<string>", "description": "<string>", "settings": { "stability": 123, "clarity": 123, "use_speaker_boost": true } }'
{ "success": true, "data": { "id": "voice_abc123", "name": "Professional Sales Voice", "description": "Optimized for B2B outreach campaigns", "status": "ready", "settings": { "stability": 0.7, "clarity": 0.9, "use_speaker_boost": true }, "created_at": "2024-01-15T10:30:00Z", "updated_at": "2024-01-20T15:30:00Z" } }
Update voice clone settings and metadata
voice:update
application/json
Show Voice Settings
curl -X PUT "https://api.buena.ai/api/v2/voice-clones/voice_abc123" \ -H "x-api-key: YOUR_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "name": "Professional Sales Voice", "description": "Optimized for B2B outreach campaigns", "settings": { "stability": 0.7, "clarity": 0.9, "use_speaker_boost": true } }'
true
Show Voice Clone Object