Skip to main content

Endpoint

GET /v1/memory/audit

Query Parameters

ParameterTypeDescription
actionstringFilter: read, write, delete, search, list, upload, pin, importance
limitnumberMax results (default 50, max 100)
cursorstringCursor for pagination

Response (200)

{
  "logs": [
    {
      "id": "log-uuid",
      "agentId": "agent-uuid",
      "memoryId": "memory-uuid",
      "action": "write",
      "detail": "key: facts/project-stack",
      "ipAddress": "127.0.0.1",
      "createdAt": "2026-03-23T19:29:58.023Z"
    }
  ],
  "count": 50,
  "hasMore": true,
  "nextCursor": "base64-cursor"
}