Jobs
Get PCAP Packets
Retrieves the packets collected and attached to the job represented by the given job ID. This request assumes the job is a PCAP job.
get/connect/packets/{jobId}
Path parameters
jobIdinteger required
The job ID
Query parameters
unwrapboolean
If true, and if the stream data is eligible the stream data will be unwrapped. An example of wrapped stream data is VXLAN packet data.
offsetinteger
The starting offset of the packet to retrieve; used for paging large packet results. Defaults to 0.
countinteger
The maximum number of packets to retrieve; used for paging large packet results. Defaults to 5000, or an optional server-side configuration value/
Response
The array of retrieved Packet objects
Example response
[
{
"acknowledge": 1400892081,
"checksum": 4868,
"dstIp": "41.51.61.71",
"dstMac": "a0:b1:c2:d3:e4:f5",
"dstPort": 55423,
"flags": [
"SYN",
"ACK"
],
"length": 79,
"payload": "oDaf1FD=",
"sequence": 2023436470,
"srcIp": "1.2.3.4",
"srcMac": "0a:1b:2c:3d:4e:5f",
"srcPort": 80,
"timestamp": "2024-10-06T19:29:39.332211Z",
"type": "DNS",
"window": 64296
}
]