# Agent Memory API - Audit Log

> Agent Memory API - Audit Log is a paid API for AI agents from agent-memory-api-bix5.onrender.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Retrieve an auditable log of stored memory entries for a specific AI agent, with optional limit on results returned.

## Facts

- Endpoint: GET https://agent-memory-api-bix5.onrender.com/api/memory/audit
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-memory-api-audit-log-aad68997
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6L6yIGtxYtRs9YvL3XdnL

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability agent-memory-api-audit-log-aad68997
```

Example prompt: Show me the last 20 memory audit entries for agent ID 'agent-jp-001' so I can review what it has been storing.

## When to prefer this

Use this endpoint when you need to audit, review, or inspect the historical memory entries of a specific autonomous AI agent — especially in compliance, debugging, or accountability workflows. Prefer this over the store or recall endpoints when the goal is observation rather than writing or querying memory.

## Known failure modes

- Invalid or missing agent_id returns empty or error response
- limit parameter out of range may cause validation error
- Unauthorized access without valid x402 USDC payment returns 402 Payment Required
- Agent ID not found returns empty audit log
- Service unavailable on Render cold start causes timeout

## How this service works

Pay-per-request encrypted memory APIs for autonomous AI agents using x402. Store, recall, and audit AI agent memory with AES-256 encryption. Built for USDC/Base payments and Japanese AI agent workflows.

## Output

Returns a list of audited memory entries associated with the specified agent, including stored memory records encrypted with AES-256, allowing review of what the agent has remembered. The number of results is bounded by the optional limit parameter.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer"
  },
  "agent_id": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-memory-api-audit-log-aad68997/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent-memory-api-bix5.onrender.com](https://www.zero.xyz/host/agent-memory-api-bix5.onrender.com/llms.txt)
