elevenlabs · Schema
CreateAudioNativeRequest
Properties
| Name | Type | Description |
|---|---|---|
| name | string | Display name for the Audio Native project. |
| title | string | Title displayed in the embedded player. |
| body | string | The text content to convert to audio. |
| source_url | string | A URL to import content from for the audio player. |
| voice_id | string | The voice to use for audio generation. |
| model_id | string | The TTS model to use. |
| auto_convert | boolean | Whether to automatically convert the content to audio. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateAudioNativeRequest",
"title": "CreateAudioNativeRequest",
"type": "object",
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "Display name for the Audio Native project."
},
"title": {
"type": "string",
"description": "Title displayed in the embedded player."
},
"body": {
"type": "string",
"description": "The text content to convert to audio."
},
"source_url": {
"type": "string",
"format": "uri",
"description": "A URL to import content from for the audio player."
},
"voice_id": {
"type": "string",
"description": "The voice to use for audio generation."
},
"model_id": {
"type": "string",
"description": "The TTS model to use."
},
"auto_convert": {
"type": "boolean",
"description": "Whether to automatically convert the content to audio.",
"default": false
}
}
}