.pcap file and exposed on the same surfaces. When none was forked, the dashboard shows no button and the API returns no field — neither pretends otherwise.
This guide covers when a capture is the right evidence to pull, how to download it from the dashboard or the API, what it contains, and how to share it with support safely.
1. When a packet capture helps
Pull a capture when the question is about the transport, not the content:- Packet loss and jitter. One-way audio, clipped syllables, and robot-voice artifacts usually come from dropped or late RTP packets. The capture shows per-packet timing and sequence gaps, which separates “the sender stopped sending” from “the network lost the packets” — the fix differs.
- Codec mismatches. If the call negotiated a codec that one leg could not actually produce, the audio recording is uniformly bad and never points at the cause. The capture shows the SDP offer/answer and the payload type on the wire.
- Verify a remediation. After a route change or a codec allowlist change, fresh captures let support confirm the remediation on new calls rather than wait for the next complaint.
2. Download the capture from the call detail page
- Open Voice → Calls and pick the call.
- Find the recording panel. Whenever a capture exists for that call, a Packet capture button sits next to the recording download, labelled with the file size when the recorder reported it.
- Click it — the browser downloads the
.pcapfile.
3. Open it in Wireshark
Wireshark reads.pcap directly; there’s no convert step.
After you open the file:
- Decode as RTP. If streams show as plain UDP, select a packet and Decode as… → RTP.
- Measure jitter and lost packets. Telephony → RTP → Stream Analysis shows packet timing, worst-to-best jitter, and where sequence numbers jump.
- Listen to the RTP stream (Telephony → RTP → Player) if the codec is decodable — this confirms whether the fault is transport or content without shipping the audio anywhere.
4. Download it from the API
The same call-recording metadata endpoint that returns the audio link also returns the capture link when one exists:pcap_url is present only when the recorder forked a capture for this call; pcap_expires_at is the epoch-ms expiry of the signed link (mirrors expires_at); pcap_size_bytes is the artifact size when the recorder reported it. Calls without a capture omit all three fields — your tooling should treat their absence as “no capture for this call”, not as an error, and skip the download instead of iterating a dead link.
Where the capture was forked at call outset by the SIPREC recorder (the common enterprise path), the metadata joins both legs onto one call id, so the link still resolves for calls that also returned a Telnyx recording_url.
5. Treat the capture as sensitive
A.pcap contains the audio — every payload on the wire, not just call metadata. Share it on the same footing as a full recording:
- Attach it to a support ticket rather than pasting a public link. Signed URLs are how the capture leaves your tenant, and a ticket attachment narrows who can fetch it.
- If you must move it outside a ticket, re-encrypt the file (e.g. age, GPG) before upload and revoke the URL after — any bearer of a still-valid signed link can fetch it.
- Keep the capture-retention expectation aligned with your recording retention: the capture answers a diagnostic question, then is as obsolete as the recording for the same call.
Packet capture is diagnostic traffic. Nothing on this page turns it into lawful-intercept evidence or changes where outbound media terminates; outbound voice and SMS still exit only through the Devotel softswitch, and Telnyx/DIDWW stay on their inbound-only lane. Collections for LI follow the recording pipeline’s retention rules your organization already configured.
Related
- Recording lifecycle — how recordings move from provider webhook to stored artifact.
- Searchable recording and transcript library — the QA surface that lists every recording across channels.
- SIP trunk troubleshooting — when the capture points at the carrier, e.g. the SDP negotiation above.