Skip to main content
GET
/
api
/
v1
/
issues
cURL
curl --request GET \
  --url https://api.staging.qyl.dev/api/v1/issues
{
  "items": [
    {
      "id": "<string>",
      "project_id": "<string>",
      "fingerprint": "<string>",
      "title": "<string>",
      "error_type": "<string>",
      "category": "<string>",
      "level": "debug",
      "first_seen_at": "2023-11-07T05:31:56Z",
      "last_seen_at": "2023-11-07T05:31:56Z",
      "occurrence_count": 123,
      "affected_users_count": 123,
      "status": "unresolved",
      "priority": "critical",
      "regression_count": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "culprit": "<string>",
      "platform": "<string>",
      "substatus": "<string>",
      "assigned_to": "<string>",
      "resolved_at": "2023-11-07T05:31:56Z",
      "resolved_by": "<string>",
      "last_release": "<string>",
      "tags_json": "<string>",
      "metadata_json": "<string>"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>",
  "prev_cursor": "<string>"
}

Query Parameters

projectId
string

Project ID filter

status
enum<string>

Status filter Issue lifecycle status

Available options:
unresolved,
acknowledged,
investigating,
in_progress,
resolved,
ignored,
regressed
priority
enum<string>

Priority filter Issue priority

Available options:
critical,
high,
medium,
low
level
enum<string>

Level filter Issue severity level

Available options:
debug,
info,
warning,
error,
fatal
startTime
string<date-time>

Start time

endTime
string<date-time>

End time

limit
integer<int32>
default:20

Page size

Required range: 1 <= x <= 100
cursor
string

Cursor

Response

The request has succeeded.

Cursor-based paginated response wrapper

items
object[]
required

List of items in this page

has_more
boolean
required

Whether there are more items available

next_cursor
string

Cursor for the next page (null if no more pages)

prev_cursor
string

Cursor for the previous page (null if first page)