Skip to main content
GET
/
issues
List issues
curl --request GET \
  --url https://api.example.com/issues \
  --header 'Authorization: Bearer <token>'
{
  "issues": [
    {
      "id": "<string>",
      "project_id": "<string>",
      "name": "<string>",
      "priority": "<string>",
      "status": "<string>",
      "agent_name": "<string>",
      "category": "<string>",
      "created_at": "<string>",
      "updated_at": "<string>",
      "first_seen_at": "<string>",
      "last_seen_at": "<string>",
      "observation_count": 0
    }
  ],
  "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.

Query Parameters

project_id
string<uuid>
required

Project whose issues to list.

status
string | null
default:open

If set, filter by issue lifecycle status.

limit
integer
default:50

Page size.

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

Pagination offset.

Required range: x >= 0

Response

Successful Response

issues
ProjectIssueSummary · object[]
required
total
integer
required
limit
integer
required
offset
integer
required
has_more
boolean
required