# minia2a Amicable Pair Finder

> minia2a Amicable Pair Finder 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).

Given a number, finds its amicable pair — the other number in an amicable pair where each number equals the sum of the proper divisors of the other.

## Facts

- Endpoint: GET https://minia2a.uk/x402/x402-amicable-pair
- 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-amicable-pair-finder-3f63571c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3K6zZZoQwJz2eBefz9Gia

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-amicable-pair-finder-3f63571c
```

Example prompt: Can you find the amicable pair for the number 220? I want to know which number forms an amicable pair with it based on their proper divisors.

## When to prefer this

Choose this endpoint when you need a quick, paid, on-demand computation of amicable pairs for number theory tasks, math puzzles, or educational tools, and don't want to run the computation locally. It's a lightweight API that handles the divisor-sum logic for you without requiring a math library.

## Known failure modes

- Input number has no amicable pair (perfect numbers or non-amicable integers) — returns null or error
- Non-integer or negative input causes validation failure
- Very large numbers may time out or exceed computation limits
- Missing required input parameter returns a schema validation error

## How this service works

minia2a service: x402-amicable-pair

## Output

Returns the amicable partner number for the given input — i.e., the number whose proper divisors sum to the input, and whose input's proper divisors also sum back to it. May also indicate if no amicable pair exists for the given 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-amicable-pair-finder-3f63571c/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)
