# minia2a Abundant Numbers Checker

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

Determines whether numbers are abundant (where the sum of proper divisors exceeds the number itself)

## Facts

- Endpoint: GET https://minia2a.uk/x402/x402-abundant-numbers
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minia2a-abundant-numbers-checker-788af4e6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UooUffg0cJu1OpMvO3a8W

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-abundant-numbers-checker-788af4e6
```

Example prompt: Can you check whether 18 is an abundant number — i.e., does the sum of its proper divisors exceed 18 itself?

## When to prefer this

Choose this endpoint when you need a quick, pay-per-use computation to classify integers as abundant numbers without running local math logic. Useful for number theory tasks, educational tools, or mathematical puzzle-solving agents that need on-demand divisor analysis.

## Known failure modes

- Missing or invalid 'input' parameter returns an error
- Non-integer or negative input may be rejected
- Service unavailability if x402 payment fails
- Rate limiting or payment issues causing 402 response

## How this service works

minia2a service: x402-abundant-numbers

## Output

Returns whether the queried integer is an abundant number, along with computed information about its proper divisors and their sum relative to the number.

## 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-abundant-numbers-checker-788af4e6/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)
