# Agent Memory API – Recall Extract

> Agent Memory API – Recall Extract is a paid API for AI agents from agent-memory-api-bix5.onrender.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Extracts structured items, confidence scores, and source locations from AI agent memory content using AES-256 encrypted processing

## Facts

- Endpoint: POST https://agent-memory-api-bix5.onrender.com/api/recall/extract
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agent-memory-api-recall-extract-b47a21c9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eToctPFqYZGVvEvNbHpQL

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-recall-extract-b47a21c9 -d '<json body>'
```

Example prompt: Extract the key facts and decisions from this agent memory content: 'The user prefers USDC payments on Base, has previously asked about Japanese AI workflows, and wants daily summaries at 9am.' Use general extract type.

## When to prefer this

Choose this endpoint when you need to parse and structure raw AI agent memory content into discrete extractable items with confidence scores — especially in autonomous agent pipelines on Base/USDC that require auditable, encrypted memory recall with suggested next-step routing.

## Known failure modes

- Missing required 'content' field returns 422 validation error
- Content too large may cause timeout or processing error
- Invalid extract_type value may return empty or unexpected results
- Payment failure via x402 returns 402 Payment Required before processing
- Service unavailable on Render free tier (cold start delays)

## 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 an array of extracted items (strings), parallel confidence scores (floats 0-1) for each item, source location references within the content, and a next_recommended object suggesting a follow-up API call with its name, URL, reason, expected improvement, and price in USDC.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "content"
 ],
 "properties": {
  "content": {
   "type": "string"
  },
  "extract_type": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "title": "ExtractContentResponse",
 "required": [
  "extracted_items",
  "confidence_scores",
  "source_locations",
  "next_recommended"
 ],
 "properties": {
  "extracted_items": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "title": "Extracted Items"
  },
  "next_recommended": {
   "type": "object",
   "title": "NextRecommendation",
   "required": [
    "api_name",
    "url",
    "reason",
    "expected_improvement",
    "price_usdc"
   ],
   "properties": {
    "url": {
     "type": "string",
     "title": "Url"
    },
    "reason": {
     "type": "string",
     "title": "Reason"
    },
    "api_name": {
     "type": "string",
     "title": "Api Name"
    },
    "price_usdc": {
     "type": "number",
     "title": "Price Usdc"
    },
    "expected_improvement": {
     "type": "string",
     "title": "Expected Improvement"
    }
   }
  },
  "source_locations": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "title": "Source Locations"
  },
  "confidence_scores": {
   "type": "array",
   "items": {
    "type": "number"
   },
   "title": "Confidence Scores"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agent-memory-api-recall-extract-b47a21c9/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)
