Skip to main content
GET
/
v2
/
audit-logs
List audit logs
curl --request GET \
  --url https://api.arize.com/v2/audit-logs \
  --header 'Authorization: Bearer <token>'
{
  "logs": [
    {
      "id": "QXVkaXRMb2c6NDI=",
      "user_id": "VXNlcjoxMjM0NQ==",
      "ip": "1.2.3.4",
      "operation_type": "MUTATION",
      "operation_name": "createAiIntegration",
      "operation_text": "mutation createAiIntegration { ... }",
      "variables": "{}",
      "created_at": "2026-05-18T12:00:00.000Z"
    }
  ],
  "pagination": {
    "next_cursor": "eyJjcmVhdGVkQXQiOiIyMDI2LTA1LTE4VDEyOjAwOjAwLjAwMFoiLCJpZCI6NDJ9",
    "has_more": true
  }
}

Authorizations

Authorization
string
header
required

Most Arize AI endpoints require authentication. For those endpoints that require authentication, include your API key in the request header using the format

Query Parameters

start_time
string<date-time>

Inclusive lower bound on created_at (ISO 8601 datetime). Defaults to 30 days before end_time when omitted.

end_time
string<date-time>

Inclusive upper bound on created_at (ISO 8601 datetime). Defaults to the current time when omitted.

user_id
string

Filter results by user (base64 global user ID). When provided, only records associated with this user are returned. Access requirements vary by endpoint — some endpoints restrict this filter to account admins.

A universally unique identifier (base64-encoded opaque string).

Example:

"RW50aXR5OjEyMzQ1"

operation_type
enum<string>

Filter results to a specific operation type. The type of operation that was audited.

Available options:
QUERY,
MUTATION,
SUBSCRIPTION
limit
integer
default:50

Maximum items to return

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

Opaque pagination cursor returned from a previous response (pagination.next_cursor). Treat it as an unreadable token; do not attempt to parse or construct it.

Response

A paginated list of audit log entries.

logs
object[]
required

A list of audit log entries, newest first.

pagination
object
required

Pagination metadata for cursor-based navigation.