files/en-us/web/api/rtcpeerconnectioniceevent/url/index.md
{{APIRef("WebRTC")}}{{deprecated_header}}
The read-only url property of the {{domxref("RTCPeerConnectionIceEvent")}} interface returns the URL of the {{Glossary("STUN")}} or {{Glossary("TURN")}} server used to gather the ICE candidate that caused the event. If the candidate was not gathered from a {{Glossary("STUN")}} or {{Glossary("TURN")}} server, the value is null.
[!NOTE] This property is considered deprecated by the specification in favor of the
urlproperty on the {{domxref("RTCIceCandidate")}} interface itself.
A string containing the URL of the {{Glossary("STUN")}} or {{Glossary("TURN")}} server used to gather this candidate, or null if the candidate was not gathered from a server (for example, a local host candidate).
pc.onicecandidate = (event) => {
if (event.candidate) {
console.log(`Candidate gathered from: ${event.url}`);
}
};
{{Specifications}}
{{Compat}}