Quickstart
From API key to spoken audio in under five minutes.
Get an API key
Create a key in the console under API keys. Keys look like sk_live_… and are shown once at creation; store them in a secret manager or environment variable, never in client code or version control.
Make your first request
The fastest path is the OpenAI SDK you may already have installed: point it at the Svara base URL:
pip install openaiStream it
Buffered audio makes long text feel broken; stream by default. Set stream: true and consume chunks as they arrive; with pcm output the first bytes land in a few hundred milliseconds:
Full recipes for browsers, native apps, and telephony are on the Streaming page.
Explore voices and languages
These endpoints are public, no key required:
GET /v1/voices: the current voice roster, each with apreview_urlGET /v1/languages: all 80 supported languages, for building pickersGET /v1/models: available models
Prefer clicking to curling? The console playground lets you try voices, languages, and multi-speaker scenes without writing code.