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