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
}Returns issues for a project, optionally filtered by lifecycle status.
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.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Project whose issues to list.
If set, filter by issue lifecycle status.
Page size.
1 <= x <= 200Pagination offset.
x >= 0