elevenlabs · Schema
ProfessionalVoiceCloneRequest
Properties
| Name | Type | Description |
|---|---|---|
| files | array | High-quality audio recordings for professional voice cloning. A minimum of 30 minutes of recordings is required. |
| consent | string | A signed consent form or audio consent from the voice owner authorizing the creation of the voice clone. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ProfessionalVoiceCloneRequest",
"title": "ProfessionalVoiceCloneRequest",
"type": "object",
"required": [
"files"
],
"properties": {
"files": {
"type": "array",
"description": "High-quality audio recordings for professional voice cloning. A minimum of 30 minutes of recordings is required.",
"items": {
"type": "string",
"format": "binary"
}
},
"consent": {
"type": "string",
"format": "binary",
"description": "A signed consent form or audio consent from the voice owner authorizing the creation of the voice clone."
}
}
}