Providers
Murf
Murf GEN2 and FALCON text-to-speech through the Speechbase gateway.
| Prefix | murf |
| Default model | GEN2 |
| Provider key | Connect under Provider Keys |
Route to Murf by prefixing the model with murf/. GEN2 is the default and the
only model with native word-level timestamps.
Models
| Model | Streaming | Timestamps | Languages |
|---|---|---|---|
GEN2 | Yes | Native | 33 |
FALCON | Yes | STT fallback | 1 |
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": "murf/GEN2",
"voice": "en-US-natalie",
"text": "Hello from Speechbase!",
"output": "mp3"
}' --output hello.mp3voice is a Murf voice ID of the form <locale>-<name>, for example
en-US-natalie or en-US-marcus.
Provider options
Anything in providerOptions is forwarded to the Murf API unchanged
(for example style or pitch).

