Get a preset
This endpoint retrieves details of a specific voice settings preset by UUID.
HTTP Request
GET https://app.resemble.ai/api/v2/voice_settings_presets/:uuid
| URL Parameters | Type | Description |
|---|---|---|
| uuid | string | UUID of the preset |
HTTP Response
{
"success": true,
"data": {
"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"
}
}
Response Body
| Attribute | Type | Description |
|---|---|---|
| success | boolean | True if the request was successful |
| data | object | The preset object containing all settings and metadata |
| uuid | string | Unique identifier for the preset |
| name | string | Name of the preset |
| settings | object | Voice settings configuration |
| is_public | boolean | Whether this is a public/default preset (read-only) |
| created_at | string | ISO 8601 timestamp of when the preset was created |
| updated_at | string | ISO 8601 timestamp of when the preset was last updated |
Examples
NodeJS
1
Coming soon...Try it out
API Key: