Skip to main content
GET
List alert events for the workspace

Authorizations

X-API-KEY
string
header
required

Authorization method required to allow user to access the api endpoints.

Query Parameters

limit
number
default:10

Maximum number of records to return (1-100). Defaults to 10.

Required range: 1 <= x <= 100
Example:

20

cursor
string

Opaque pagination cursor. Omit for the first page, then pass meta.next_cursor / meta.previous_cursor from a previous response to move between pages. meta.first_page_cursor (A) and meta.last_page_cursor (Z) jump to the first/last page. Results are ordered newest-first by a server-side cursor; treat the value as opaque — do not construct or modify it.

Example:

"eyJwIjoyLCJjIjoiMjkxNzM0NDYyNDg0NDM0OTk1MyIsImIiOmZhbHNlfQ"

network
string

Filter by network slug (e.g. ethereum, solana).

Example:

"ethereum"

tx_hash
string

Filter by exact transaction hash.

Example:

"0xabc123...def456"

alert_rule_id
string

Filter by the alert rule that triggered the event.

Example:

"123456789012345678"

start_date
string

Start of date range in YYYY-MM-DD format (inclusive, UTC).

Example:

"2026-05-01"

end_date
string

End of date range in YYYY-MM-DD format (inclusive, UTC).

Example:

"2026-05-31"

severity
string

Comma-separated list of severity levels to filter by (e.g. low,medium,high).

Example:

"high,medium"

search_string
string

Case-insensitive search across event caption and addresses involved.

Example:

"0x742d35"

Response

200 - application/json
items
object[]
required
meta
object
required
Last modified on July 22, 2026