# Agent Memory Store API

> Agent Memory Store API 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).

Stores encrypted AI agent memory entries with audit-ready metadata for persistent, secure agent state management

## Facts

- Endpoint: POST https://agent-memory-api-bix5.onrender.com/api/memory/store
- 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-bix5-onrender-com-4b7acd38
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IkUaRZ0RcJryjE_gDUUf4

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-bix5-onrender-com-4b7acd38 -d '<json body>'
```

Example prompt: Save this encrypted memory entry for agent session 'assistant-7b2f': 'User prefers concise responses and dislikes bullet points' — make sure it includes audit metadata so I can trace it later.

## When to prefer this

Choose this endpoint when an AI agent needs to persist memory entries with encryption and compliance-friendly audit metadata — particularly useful in regulated environments or multi-session agents that need traceable, secure state storage. Prefer this over plain key-value stores when encryption and audit trails are required.

## Known failure modes

- Invalid or missing memory content returns 400 Bad Request
- Payment failure or insufficient USDC balance returns 402 Payment Required
- Encryption key mismatch or invalid format returns 422 Unprocessable Entity
- Server unavailable (Render cold start) may cause timeout or 503
- Malformed metadata fields may cause rejection with validation error
- Rate limiting may trigger 429 Too Many Requests

## How this service works

Store encrypted AI agent memory with audit-ready metadata

## Output

Returns a confirmation of the stored memory record including a unique record ID, storage timestamp, encrypted payload reference, and audit-ready metadata confirming the entry was persisted securely.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "stored": {
   "type": "boolean"
  },
  "memory_id": {
   "type": "string"
  },
  "audit_log_id": {
   "type": "string"
  },
  "next_recommended": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "stored": true,
  "memory_id": "mem_abc123",
  "audit_log_id": "audit_xyz456",
  "next_recommended": "proceed_with_recall"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-memory-api-bix5-onrender-com-4b7acd38/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)
