Skip to main content
GET
/
v1
/
exceptions
cURL
curl --request GET \
  --url https://api.qyl.dev/v1/exceptions
{
  "items": [
    {
      "exception_type": "<string>",
      "message": "<string>",
      "stack_trace": {
        "frames": [
          {
            "index": 123,
            "location": {
              "filepath": "<string>",
              "line_number": 2,
              "column_number": 2,
              "function_name": "<string>",
              "class_name": "<string>",
              "namespace": "<string>"
            },
            "is_user_code": true,
            "module_name": "<string>",
            "module_version": "2.1.0",
            "is_native": true
          }
        ],
        "truncated": true,
        "total_frames": 123
      },
      "cause": "<unknown>",
      "data": [
        {
          "key": "<string>",
          "value": "<string>"
        }
      ],
      "fingerprint": "<string>",
      "first_seen": "2023-11-07T05:31:56Z",
      "last_seen": "2023-11-07T05:31:56Z",
      "occurrence_count": 1,
      "affected_users": 1,
      "status": "new"
    }
  ],
  "has_more": true,
  "next_cursor": "<string>",
  "prev_cursor": "<string>"
}

Query Parameters

serviceName
string

Service name filter

exceptionType
string

Exception type filter

status
enum<string>

Status filter Exception status

Available options:
new,
investigating,
in_progress,
resolved,
ignored,
regressed
startTime
string<date-time>

Start time

endTime
string<date-time>

End time

limit
integer<int32>
default:100

Page size

Required range: 1 <= x <= 1000
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)