# minia2a Analogous Color Finder

> minia2a Analogous Color 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).

Returns analogous colors for a given input color using the x402 micropayment protocol

## Facts

- Endpoint: GET https://minia2a.uk/x402/analogous
- 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-analogous-color-finder-d17477d9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EHnN0yHRMNhGS8VCURwLH

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-analogous-color-finder-d17477d9
```

Example prompt: Find the analogous colors for the hex color #3A86FF — I need the related colors that sit next to it on the color wheel for my design project.

## When to prefer this

Choose this endpoint when you need a quick, inexpensive ($0.01 USDC) programmatic lookup of analogous colors for a given input color, especially in agentic workflows that already use x402 micropayment infrastructure. Best suited for single color queries rather than bulk palette generation tools.

## Known failure modes

- Invalid or missing color input returns an error
- Malformed query parameters may result in a bad request response
- Service unavailable or payment failure via x402 protocol returns a 402 or 5xx error

## How this service works

minia2a service: x402-analogous

## Output

Returns a set of analogous colors computed from the input color, representing hues adjacent on the color wheel that form a harmonious palette.

## 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-analogous-color-finder-d17477d9/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)
