Overview
Teler supports real-time, bidirectional media streaming over WebSockets.
Media streams can be useful for building virtual agents, live transcription systems, audio analysis pipelines, and testing environments.
How It Works
Incoming calls
- An incoming call lands on your Teler number.
- Teler fetches the Call Flow by looking up the
flow_url
in your Voice App config. - The Call flow you return is a Stream flow containing a
ws_url
. - A WebSocket connection is established between Teler and the provided endpoint.
- Teler starts streaming Base64 encoded audio chunks over the WebSocket connection.
- Optionally, you send back audio chunks over the same connection, which are then played over the call.
- Teler closes the stream after the call ends.
Outgoing calls
Coming soon...