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>",
      "trace_id": "<string>",
      "title": "<string>",
      "rationale": "<string>",
      "source_span_ids": [
        "<string>"
      ],
      "evidence_span_ids": [
        "<string>"
      ],
      "citations": [
        {}
      ],
      "issue_id": "<string>",
      "category": "<string>",
      "created_at": "<string>",
      "issue": {
        "id": "<string>",
        "name": "<string>",
        "priority": "<string>",
        "status": "<string>",
        "category": "<string>",
        "agent_name": "<string>"
      }
    }
  ]
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

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

Path Parameters

trace_id
string<uuid>
required

Trace identifier.

Response

Successful Response

issue_occurrences
TraceIssueOccurrenceRow · object[]
required