List Voice Settings Presets

GET https://app.resemble.ai/api/v2/voice_settings_presets

Retrieve all voice settings presets (both custom and default).

curl 'https://app.resemble.ai/api/v2/voice_settings_presets' \
-H 'Authorization: Bearer YOUR_API_TOKEN'
{
"success": true,
"data": {
"custom_presets": [
{
"uuid": "123e4567-e89b-12d3-a456-426614174000",
"name": "Energetic Voice",
"settings": {
"pace": 1.2,
"temperature": 1.1,
"pitch": 0.5,
"useHd": false,
"exaggeration": 0.5,
"description": "Speak energetically"
},
"is_public": false,
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-01T00:00:00Z"
}
],
"default_presets": [
{
"uuid": "default-preset-uuid",
"name": "Default Preset",
"settings": {
"pace": 1.0,
"temperature": 0.8,
"pitch": 0.0,
"useHd": false,
"exaggeration": 0.5,
"description": ""
},
"is_public": true,
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-01T00:00:00Z"
}
]
}
}