Get all presets
This endpoint retrieves all voice settings presets, including both custom user presets and default/public presets created by the Resemble team.
HTTP Request
GET https://app.resemble.ai/api/v2/voice_settings_presets
HTTP Response
{
"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": { ... },
"is_public": true,
"created_at": "2024-01-01T00:00:00Z",
"updated_at": "2024-01-01T00:00:00Z"
}
]
}
}
Response Body
| Attribute | Type | Description |
|---|---|---|
| success | boolean | True if the request was successful |
| custom_presets | Array | Array of presets created by the user (maximum 5) |
| default_presets | Array | Array of public presets created by Resemble (do not count towards limit) |
Examples
NodeJS
1
Coming soon...Try it out
API Key: