Voice AI Beta — Sirius
Create Speech Task
Create a Text-to-Speech task with Sirius. Provide exactly one of voice (preset, from GET /v1/tts/sirius/voices), voice_asset_id (your voice clone) or voice_design_id (your saved voice design). Preset voices additionally accept free-text style instructions. Cost: ⌈characters / 2⌉ credits, refunded automatically on failure.
Example
curl -X POST https://genaipro.io/api/v1/tts/sirius \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"content": "Xin chào, đây là GenAIPro", "voice": "arcturus", "style": "speak softly, warm tone"}'
Rate limit: 30 requests/minute
post/v1/tts/sirius
Request body
Example request
{
"content": "Xin chào, đây là GenAIPro",
"voice": "arcturus"
}Response
Task created — credits already deducted (cost)
Example response
{
"status": "completed",
"provider": "lyra"
}Changes
No recorded changes to this endpoint across all 1 revision of this API.