Skip to main content
GET
/
api
/
v1
/
calls
/
{callId}
/
sip-traces
Get SIP traces
const options = {method: 'GET'};

fetch('https://blackbox.dasha.ai/api/v1/calls/{callId}/sip-traces', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
[
  {
    "callId": "<string>",
    "direction": "<string>",
    "messages": [
      {
        "timestamp": "<string>",
        "method": "<string>",
        "statusCode": 123,
        "sourceIp": "<string>",
        "sourcePort": 123,
        "destIp": "<string>",
        "destPort": 123,
        "protocol": "<string>",
        "rawMessage": "<string>"
      }
    ]
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.blackbox.dasha.ai/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

callId
string
required

Blackbox call identifier

Response

Returns SIP trace groups successfully

callId
string | null

SIP Call-ID header value that uniquely identifies this SIP dialog.

direction
string | null

Call direction: "DirectionOut" for outbound, "DirectionIn" for inbound.

messages
object[] | null

Ordered list of SIP messages exchanged during this call.