Speechbase
Providers

Inworld

Inworld text-to-speech through the Speechbase gateway, with streaming, multilingual voices, and native timestamps.

Prefixinworld
Default modelinworld-tts-1.5-max
Provider keyConnect under Provider Keys

Route to Inworld by prefixing the model with inworld/. All models stream and return native word-level timestamps.

Models

ModelStreamingTimestampsMax inputLanguages
inworld-tts-2YesNative200014
inworld-tts-1.5-maxYesNative200014
inworld-tts-1.5-miniYesNative200014

inworld-tts-2 is the newest; the 1.5-mini model is the lowest-latency option.

Usage

curl -X POST https://api.speechbase.ai/v1/audio/speech \
  -H "Authorization: Bearer $SPEECHBASE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "mode": "inline",
    "model": "inworld/inworld-tts-1.5-max",
    "voice": "Ashley",
    "text": "Hello from Speechbase!",
    "output": "mp3"
  }' --output hello.mp3

voice is an Inworld voice name such as Ashley, Dominus, Edward, Hades, or Priya.

Provider options

Anything in providerOptions is forwarded to the Inworld API unchanged.

On this page