# minia2a CAPTCHA Solver

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

Solves reCAPTCHA v2 and Enterprise challenges programmatically given a page URL and sitekey

## Facts

- Endpoint: GET https://minia2a.uk/x402/captcha-solve
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minia2a-captcha-solver-e28478c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_r2hCe7iEnHp0k4fUrYcgE

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-captcha-solver-e28478c0
```

Example prompt: Solve the reCAPTCHA v2 CAPTCHA on https://example.com/login — the sitekey is 6LcE_aBcDeFgH123456789, I need the token so I can submit the form.

## When to prefer this

Choose this endpoint when you need to solve reCAPTCHA v2 or Enterprise challenges programmatically in an automated pipeline and are willing to pay per-solve via x402/USDC micropayment. Suitable for web automation, scraping workflows, or form submission agents that encounter reCAPTCHA walls.

## Known failure modes

- Invalid or expired sitekey returns an error
- Unsupported CAPTCHA type (not v2 or enterprise) returns validation error
- Target page URL unreachable or blocked causes solve failure
- Service timeout if CAPTCHA challenge takes too long to resolve
- Insufficient payment or x402 payment failure blocks the request

## How this service works

minia2a service: x402-captcha-solve

## Output

A reCAPTCHA solution token (g-recaptcha-response string) that can be injected into the target page form to pass the CAPTCHA challenge.

## 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-captcha-solver-e28478c0/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)
