Log in to see full request history

After exchanging SDP, it's essential to exchange network information to establish a connection fully. Within the peerConnection.onicecandidate() callback function, obtain the network information and submit it to the server.

Here's how you can do it:

peerConnection.onicecandidate = async (event) => { if (!event.candidate) { return } await fetch(`https://apis.elai.io/api/v1/stream/candidate/${streamId}`, { method: "POST", body: JSON.stringify({ candidate: event.candidate }) }) }
Path Params
string
required

Stream ID, obtained from the 'Create a stream' request

Body Params
candidate
object
required
Responses

Language
Credentials
Click Try It! to start a request and see the response here! Or choose an example:
application/json