# 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).

Returns abundant numbers (numbers whose proper divisors sum to more than the number itself) for a given input via a paid API endpoint.

## Facts

- Endpoint: GET https://minia2a.uk/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-185d7d9c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fCHzDc5b56AWrA2zKhp0Q

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-185d7d9c
```

Example prompt: Can you give me all the abundant numbers up to 1000? I need them for a number theory problem I'm working on.

## When to prefer this

Use this endpoint when you need a quick, on-demand computation of abundant numbers without running your own number-theory code. It is ideal for math puzzles, educational tools, or agents that need number-theory lookups as a microservice rather than executing local computation. Choose this over a general-purpose code execution service when you want a lightweight, pay-per-call solution.

## Known failure modes

- Missing or invalid 'input' query parameter returns an error
- Non-numeric input causes a parse or validation error
- Very large number ranges may timeout or return partial results
- Payment failure via x402 protocol blocks access to the endpoint
- Malformed query parameter object structure causes rejection

## How this service works

minia2a service: x402-abundant-numbers

## Output

Returns a list or classification of abundant numbers — integers whose proper divisors (excluding the number itself) sum to a value greater than the number — for the requested input range or specific value.

## 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-185d7d9c/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)
