Skip to main content
GET
/
issues
/
{issue_id}
/
occurrences
List issue occurrences
curl --request GET \
  --url https://api.example.com/issues/{issue_id}/occurrences \
  --header 'Authorization: Bearer <token>'
{
  "occurrences": [
    {
      "id": "<string>",
      "trace_id": "<string>",
      "issue_id": "<string>",
      "title": "<string>",
      "rationale": "<string>",
      "source_span_ids": [
        "<string>"
      ],
      "evidence_span_ids": [
        "<string>"
      ],
      "category": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "trace": {
        "id": "<string>",
        "otel_trace_id": "<string>",
        "project_id": "<string>",
        "service_name": "<string>",
        "created_at": "2023-11-07T05:31:56Z",
        "thread_id": "<string>"
      },
      "citations": "<unknown>"
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123,
  "has_more": true
}

Authorizations

Authorization
string
header
required

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

Path Parameters

issue_id
string
required

Issue ID.

Query Parameters

limit
integer

Maximum number of records to return.

Required range: x >= 1
offset
integer

Number of records to skip.

Required range: x >= 0

Response

Issue occurrences

occurrences
object[]
required
total
number
required
limit
number
required
offset
number
required
has_more
boolean
required