files/en-us/web/api/rtcremoteoutboundrtpstreamstats/index.md
{{APIRef("WebRTC")}}
The RTCRemoteOutboundRtpStreamStats dictionary of the WebRTC API is used to report statistics from a remote endpoint about its outbound RTP stream.
This will correspond to an inbound stream that is currently being received by the local {{domxref("RTCPeerConnection")}} object.
The statistics can be obtained by iterating the {{domxref("RTCStatsReport")}} returned by {{domxref("RTCPeerConnection.getStats()")}} until you find a report with the type of remote-outbound-rtp.
RTCRemoteOutboundRtpStreamStats object were sent by the remote endpoint. This is different from the {{domxref("RTCRemoteOutboundRtpStreamStats.timestamp", "timestamp")}}; it represents the time at which the object's statistics were received or generated by the local endpoint.reportsSent {{optional_inline}} {{experimental_inline}}
totalRoundTripTime by roundTripTimeMeasurements.bytesSent {{optional_inline}}
packetsSent {{optional_inline}}
The following properties are common to all WebRTC statistics objects.
<!-- RTCStats -->"remote-outbound-rtp", indicating the type of statistics that the object contains.The RTCRemoteOutboundRtpStreamStats object's {{domxref("RTCRemoteOutboundRtpStreamStats.remoteTimestamp", "remoteTimestamp")}} property provides statistics based on the received data's NTP timestamp taken from an {{Glossary("RTCP")}} Sender Report (SR) block.
Be aware that the remote clock may not be synchronized with the local clock (either in current time or speed at which time elapses).
{{Specifications}}
{{Compat}}