# minia2a x402-math

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

Performs mathematical computations or calculations via a paid x402 micro-payment API endpoint

## Facts

- Endpoint: GET https://minia2a.uk/x402/x402-math
- Price: $0.001/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-math-f65e82e0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_u4L-dhsu0VSyT-G4UaTkr

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-math-f65e82e0
```

Example prompt: Can you calculate the result of this expression for me using the x402-math service: what is the square root of 144 plus the cube of 7?

## When to prefer this

Choose this endpoint when an AI agent needs to perform on-demand mathematical computations without executing local code, particularly inside x402 micropayment-enabled workflows where pay-per-call is acceptable. It is suitable for arithmetic, algebraic evaluation, or formula computation tasks in automated pipelines.

## Known failure modes

- Missing required 'input' parameter returns validation error
- Invalid or unparseable mathematical expression returns error
- Payment not included or insufficient USDC results in 402 Payment Required
- Unsupported math operation type may return an error or empty result
- Malformed query parameters cause bad request response

## How this service works

minia2a service: x402-math

## Output

Returns a computed mathematical result corresponding to the input expression or query parameters, likely as a JSON object containing the numeric or algebraic answer.

## 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-math-f65e82e0/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)
