Skip to main content
GET
/
traces
/
{trace_id}
/
issue_occurrences
List trace issue occurrences
curl --request GET \
  --url https://api.example.com/traces/{trace_id}/issue_occurrences \
  --header 'Authorization: Bearer <token>'
{
  "issue_occurrences": [
    {
      "id": "<string>",
      "title": "<string>",
      "rationale": "<string>",
      "source_span_ids": [
        "<string>"
      ],
      "evidence_span_ids": [
        "<string>"
      ],
      "category": "<string>",
      "created_at": "<string>",
      "trace_id": "<string>",
      "issue_id": "<string>",
      "citations": "<unknown>",
      "issue": {
        "id": "<string>",
        "name": "<string>",
        "priority": "<string>",
        "status": "<string>",
        "category": "<string>",
        "agent_name": "<string>"
      },
      "issue_name": "<string>",
      "issue_priority": "<string>",
      "issue_category": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

trace_id
string
required

Response

Issue occurrences

issue_occurrences
object[]
required