Radicas Docs
API referenceGenerated

Get Invocation Raw

GET
/invocations/{trace_id}/raw

Generic pass-through of EVERYTHING on a trace: every span's full attribute bag + every correlated gen_ai event (content). Attributes are returned verbatim (Map → dict). The raw spans are read straight from otel_traces, scoped by the trusted resource attribute so only the owning tenant can read them.

Authorization

HTTPBearer
AuthorizationBearer <token>

In: header

Path Parameters

trace_id*Trace Id

Response Body

application/json

application/json

curl -X GET "https://example.com/invocations/string/raw"
{  "spans": [    {      "span_id": "string",      "parent_span_id": "string",      "span_name": "string",      "duration_ms": 0,      "status": "string",      "ts": "2019-08-24T14:15:22Z",      "attributes": {        "property1": "string",        "property2": "string"      },      "scope_name": "string",      "scope_version": "string"    }  ],  "events": [    {      "span_id": "string",      "event_name": "string",      "body": "string",      "attributes": {        "property1": "string",        "property2": "string"      },      "ts": "2019-08-24T14:15:22Z",      "severity": "string"    }  ]}
{  "detail": [    {      "loc": [        "string"      ],      "msg": "string",      "type": "string",      "input": null,      "ctx": {}    }  ]}