Voice AI Beta — Vega
Create Speech Task
Create a Text-to-Speech task with Vega — the cheapest provider (⌈characters / 10⌉ credits, refunded automatically on failure). voice must come from the static catalog (GET /v1/tts/vega/voices); Vega has no cloning. Request body is capped at 32 MiB.
Example
curl -X POST https://genaipro.io/api/v1/tts/vega \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"content": "Hello from GenAIPro", "voice": "aurora"}'
Rate limit: 30 requests/minute
post/v1/tts/vega
Request body
Example request
{
"content": "Hello from GenAIPro",
"voice": "aurora"
}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.