# minia2a x402-recall

> minia2a x402-recall is a paid API for AI agents from minia2a.uk, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Retrieves or recalls stored information/results via a GET request on the minia2a x402 platform

## Facts

- Endpoint: GET https://minia2a.uk/x402/recall
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minia2a-x402-recall-9744054e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__mP9WEO7dgJPOlPcmeN-E

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 minia2a-x402-recall-9744054e
```

Example prompt: Use the minia2a recall endpoint to look up a previously stored result — send a GET request with input type 'json' and the relevant query parameters to retrieve whatever was saved.

## When to prefer this

Use this endpoint when you need to retrieve or recall a previously computed or stored result from the minia2a platform, especially when you want to avoid re-running an expensive computation and the result may have been cached. Prefer this over re-calling a compute endpoint when latency and cost savings matter.

## Known failure modes

- No matching stored result found for the given input parameters — returns empty or null output
- Invalid or missing 'input' field causes a 400-level error
- Expired or evicted cache entry returns no data
- Malformed queryParams object results in lookup failure
- Service unavailable or timeout returns a 5xx error

## How this service works

Curated agent-economy knowledge base. 🆓 5 free trial calls per signed wallet

## Output

Returns an output object containing the recalled or previously stored data corresponding to the provided input parameters, delivered as a structured JSON response.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "method": {
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minia2a-x402-recall-9744054e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from minia2a.uk](https://www.zero.xyz/host/minia2a.uk/llms.txt)
