Available Actions
generateclonevoices
Input Schema
{
"type": "object",
"required": [
"text"
],
"properties": {
"text": {
"type": "string"
},
"model": {
"type": "string"
},
"voice": {
"type": "string"
}
}
}Output Schema
{
"type": "object",
"properties": {
"duration": {
"type": "number"
},
"audio_url": {
"type": "string"
}
}
}Quick Start
API Endpoint
POST /api/execute/text-to-speechcURL Example
curl -X POST \
https://api.nulayers.com/execute/text-to-speech \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"action": "generate"}'