Create Voice Settings Preset
POST https://app.resemble.ai/api/v2/voice_settings_presets
Create a new voice settings preset.
| Field | Type | Required | Notes |
|---|---|---|---|
name | string | ✅ | Preset name. |
pace | number | ❌ | Speech pace/speed. |
temperature | number | ❌ | Voice temperature. |
pitch | number | ❌ | Voice pitch. |
useHd | boolean | ❌ | Use HD quality. |
exaggeration | number | ❌ | Exaggeration level. |
description | string | ❌ | Description or prompt. |
$ curl --request POST 'https://app.resemble.ai/api/v2/voice_settings_presets' \ > -H 'Authorization: Bearer YOUR_API_TOKEN' \ > -H 'Content-Type: application/json' \ > --data '{ > "name": "Energetic Voice", > "pace": 1.2, > "temperature": 1.1, > "pitch": 0.5, > "useHd": false, > "exaggeration": 0.7, > "description": "Speak with high energy and enthusiasm" > }'
1 { 2 "success": true, 3 "data": { 4 "uuid": "123e4567-e89b-12d3-a456-426614174000", 5 "name": "My Custom Preset", 6 "settings": { 7 "pace": 1.2, 8 "temperature": 1.1, 9 "pitch": 0.5, 10 "useHd": false, 11 "exaggeration": 0.7, 12 "description": "Speak with high energy and enthusiasm" 13 }, 14 "is_public": false, 15 "created_at": "2024-01-01T00:00:00Z", 16 "updated_at": "2024-01-01T00:00:00Z" 17 }, 18 "message": "Preset created successfully" 19 }
