Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Browser-based voice calls
curl -X POST http://localhost:8090/v1/webrtc/connect \ -H "Authorization: Bearer tc_xxx" \ -H "Content-Type: application/json" \ -d '{ "sdp": "v=0...", "type": "offer", "requestData": { "agent_id": "AGENT_UUID" } }'
curl -X PATCH http://localhost:8090/v1/webrtc/connect \ -H "Authorization: Bearer tc_xxx" \ -H "Content-Type: application/json" \ -d '{"candidate": "...", "sdpMid": "0", "sdpMLineIndex": 0}'
server_url
requestData
{ "sdp": "v=0...", "type": "offer", "requestData": { "server_url": "https://your-server.com/turncall/init" } }
Was this page helpful?