# agent402.tools Memory Forget

> agent402.tools Memory Forget is a paid API for AI agents from agent402.tools, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Deletes a previously remembered document from the agent's recall store by its document ID.

## Facts

- Endpoint: POST https://agent402.tools/api/memory/forget
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent402-tools-memory-forget-891dd2dd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_OQ-GmA3EECuGUtcK3eprZ

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 agent402-tools-memory-forget-891dd2dd -d '<json body>'
```

Example prompt: Forget the document with id 'doc_abc123' from my recall store — I no longer need it.

## When to prefer this

Use this endpoint when you need to permanently remove a specific previously remembered document from the agent402 recall store by its document ID, as returned by the /remember endpoint. Choose this over clearing all memories when you want targeted deletion of a single entry.

## Known failure modes

- Document ID not found in recall store — returns 404 or error response
- Missing or invalid 'id' field in request body — returns 400 bad request
- Payment failure or insufficient USDC balance — returns 402
- Attempting to delete an already-deleted document — may return not-found error

## How this service works

Delete a remembered document by id from the recall store.

## Output

A confirmation that the specified document has been deleted from the recall store, or an error if the document ID was not found.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "id": {
   "type": "string",
   "description": "Document id from /remember"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "id": "abc123",
  "owner": "0x…",
  "deleted": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent402-tools-memory-forget-891dd2dd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
