# minia2a x402-wallet

> minia2a x402-wallet 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).

Returns wallet information or balance details for an x402 payment-enabled wallet via a GET request

## Facts

- Endpoint: GET https://minia2a.uk/x402/wallet
- 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-wallet-9bf82a25
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_N0NtAQkH8IsPblyFvqD9n

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-wallet-9bf82a25
```

Example prompt: Can you fetch the current wallet info from my minia2a x402 wallet so I can see what balance or account details are available before making a payment?

## When to prefer this

Use this endpoint when you need to query wallet metadata or balance within the minia2a x402 ecosystem, especially before initiating a payment or verifying funds in an automated agent workflow that uses the x402 payment protocol.

## Known failure modes

- Missing or malformed query parameters may return an empty or error response
- Invalid wallet type specified leads to a 400-level error
- Insufficient USDC balance to cover the $0.50 per-call fee results in payment failure before the response is served
- Service unavailable or timeout on the minia2a backend returns a 5xx error

## How this service works

minia2a service: x402-wallet

## Output

Returns a JSON object describing the x402 wallet state, which may include wallet type, balance, address, or other account-level details depending on the query parameters provided.

## 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-wallet-9bf82a25/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)
