# minia2a x402-store

> minia2a x402-store 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 stored data or resources from the minia2a x402 key-value store service

## Facts

- Endpoint: GET https://minia2a.uk/x402/store
- 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-store-4a6750ef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uzDNfT0KsyJosgKpBCIAy

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-store-4a6750ef
```

Example prompt: Fetch the stored entry from the minia2a x402-store using a GET request with my query parameters so I can retrieve the data I saved there earlier.

## When to prefer this

Use this endpoint when you need to retrieve data that was previously stored in the minia2a x402-store service, particularly in agent workflows that persist state between steps or share data between multiple agents. Prefer this over generic storage APIs when already operating within the minia2a x402 ecosystem.

## Known failure modes

- Key or resource not found returns an empty or error response
- Missing required query parameters causes a 400-level error
- Expired or evicted entries may return nothing
- Incorrect method or body type specification may result in a failed lookup
- Payment failure (x402) blocks access entirely

## How this service works

minia2a service: x402-store

## Output

Returns the stored data or resource associated with the provided query parameters from the x402-store, delivered as a structured output object. The exact format depends on what was originally stored and the requested output type.

## 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-store-4a6750ef/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)
