---
title: "List Audit Logs"
method: GET
path: "/v1/audit-logs/"
tags: ["v1", "protected", "audit"]
---

# List Audit Logs

`GET /v1/audit-logs/`

List audit events for the current workspace.

## Query parameters

- `action` string, nullable — Filter by action (e.g. agent.create)
- `actor_id` string, nullable — Filter by actor ID
- `resource_type` string, nullable — Filter by resource type
- `resource_id` string, nullable — Filter by resource ID
- `since` string, date-time, nullable — Events after this time (ISO 8601)
- `until` string, date-time, nullable — Events before this time (ISO 8601)
- `cursor` string, uuid, nullable — Cursor for pagination
- `limit` integer — Max events to return

## Response `200`

Successful Response

- AuditLogListResponse — Paginated audit log response.
  - `events` AuditEventResponse[], required
    - `action` string, required
    - `actor_id` string, required
    - `actor_type` string, required
    - `changes` object[], nullable, required
    - `created_at` string, required
    - `event_metadata` object, required
    - `id` string, uuid, required
    - `request_id` string, nullable, required
    - `resource_id` string, nullable, required
    - `resource_type` string, required
    - `source_ip` string, nullable, required
    - `user_agent` string, nullable, required
    - `workspace_id` string, required
  - `next_cursor` string, nullable, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/agentarea/apis/agentarea-api.md) · [All operations](https://skmtc.net/agentarea/apis/agentarea-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/agentarea/agentarea-api/revisions/082e677c141c/schema)
