Or jump from this list on a smaller screen.
This is a page from the Audivra documentation. Developer exports — index: http://127.0.0.1:3000/docs/llms.txt, full corpus: http://127.0.0.1:3000/docs/llms-full.txt, OpenAPI: http://127.0.0.1:3000/docs/openapi.json, Postman: http://127.0.0.1:3000/docs/postman.json. Press ⌘K to search docs.
Voice agents
Turn-based conversational agents that return text replies and optional TTS audio.
POST
/api/v1/agents/turnAuth required
Send a user message; receive agent reply with synthesized speech when inference is available.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
| message | string | Yes | User utterance or text input |
| agent_id | string | No | Preset or custom agent configuration |
| voice_id | string | No | TTS voice for spoken reply |
Request body
JSON
{
"message": "What is included in the free plan?",
"agent_id": "support",
"voice_id": "aurora"
}Response
JSON
{
"reply": "Free trial includes 12,000 credits per month. PAYG top-up from $5 extends usage beyond quota.",
"audio_url": null
}Built-in presets
support
You are a helpful Audivra support agent. Be concise and accurate.
sales
You explain Audivra pricing and help developers integrate the API.
Configure agents in the dashboard at /app/agents.