Retrieve a list of audit log events for your organization. This endpoint supports powerful filtering and pagination to help you find specific events for security, compliance, or debugging purposes.
Results are returned in reverse chronological order (most recent first) by default.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The start date for the query range, inclusive. Format: YYYY-MM-DD.
"2025-10-01"
The end date for the query range, inclusive. Must be on or after start_date. Format: YYYY-MM-DD.
"2025-10-31"
Filter events to a specific user by their unique identifier.
"auth0|9b6efd7459f548c8bb542fe81568791f"
Filter events to a specific workspace by its unique identifier.
"ws_sz4e50hmqKgjxwiYsK"
Filter by HTTP method (e.g., POST, DELETE). To exclude a method, prefix it with an exclamation mark (e.g., !GET).
"POST"
Filter by a specific HTTP status code.
100 <= x <= 599404
Filter by the API endpoint path. This is a prefix search (e.g., /api/v1/users will match /api/v1/users/usr_123).
"/api/v1/projects"
A free-text search term. This will search across fields like endpoint, user name, email, IP address, and request/response payloads. Note: Using search_term may be less performant than indexed filters.
"user login failed"
Filter events originating from a specific IP address.
"198.51.100.14"
An opaque string that identifies the starting point for the next page of results. Get this value from the pagination.cursor field of a previous response.
"eyJQSyI6eyJTIjoiT1JH...In0sInNrIjp7IlMiOiJMT0cj...In19"
A limit on the number of objects to be returned, between 1 and 100. The default is 25.
1 <= x <= 10050
The order in which to sort the results. desc for most recent first, asc for oldest first.
asc, desc "desc"
A paginated list of audit log events matching the query.
The filters that were applied to this query.
{
"start_date": "2025-10-01",
"http_verb": "PUT",
"limit": 25
}
Metadata about the query execution.
A list of warnings about the query, such as when using potentially incomplete filters.
[
"Results may be incomplete when using search_term due to query limitations. Use more specific, indexed filters for comprehensive results."
]
Contextual information about the API request itself.