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>",
      "title": "<string>",
      "rationale": "<string>",
      "source_span_ids": [
        "<string>"
      ],
      "evidence_span_ids": [
        "<string>"
      ],
      "citations": [
        {}
      ],
      "issue_id": "<string>",
      "category": "<string>",
      "created_at": "<string>",
      "trace": {
        "id": "<string>",
        "project_id": "<string>",
        "otel_trace_id": "<string>",
        "service_name": "<string>",
        "created_at": "<string>",
        "thread_id": "<string>"
      }
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123,
  "has_more": true
}

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

issue_id
string<uuid>
required

Issue identifier.

Query Parameters

limit
integer
default:50

Page size.

Required range: 1 <= x <= 200
offset
integer
default:0

Pagination offset.

Required range: x >= 0

Response

Successful Response

occurrences
IssueOccurrenceRead · object[]
required
total
integer
required
limit
integer
required
offset
integer
required
has_more
boolean
required