Skip to main content
Bridges standardize how you call any STT or TTS model. Same URL shape, every provider. Switching models means changing the URL — nothing in your code.

Swap models without touching your code

Every endpoint follows the same structure:
/v1/bridges/{bridge}/{stt|tts}/{provider}/{model}:{variant}
Switching providers is a one-line change:
# Deepgram Nova 3
wss://api.slng.ai/v1/bridges/unmute/stt/deepgram/nova:3

# Different provider — only the URL changes
wss://api.slng.ai/v1/bridges/unmute/stt/slng/openai/whisper:large-v3

Available bridges

Unmute

Unmute is SLNG’s official bridge, supporting both STT and TTS. HTTP and WebSocket are both available on every endpoint. Same URL, different protocol.

Next steps