Skip to main content
GET
List audit logs

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

since
string

Cursor: the next_cursor value from the previous response. Omit to start from the beginning of the retained log.

limit
integer
default:100

Maximum number of events to return (1-1000).

Required range: 1 <= x <= 1000
event_type
string

Exact match on event_type (e.g. test.updated, login.succeeded).

from
string<date-time>

ISO-8601 lower bound (inclusive) on created_at.

Example:

"2026-06-01T00:00:00Z"

to
string<date-time>

ISO-8601 upper bound (inclusive) on created_at.

actor
string

Substring match against the acting user's uid or email.

Response

Successful response

logs
object[]

Audit events, ordered oldest to newest.

next_cursor
string | null

Pass as since to fetch the next page. null when the current page wasn't full (no more events yet).