CAPTCHA Solving
for AI Agents

Your agent hits a CAPTCHA wall. One API call solves it. No browser. No human. 15 free trials.

Get 500 Free Credits โ†’ See Code Examples โ†“

1,280

Trial Solves

133

Agents Using It

#1

Most Needed API

9.6

Calls/Agent

Why Agents Need CAPTCHA Solving

๐Ÿšซ No Browser

Agents run in terminals and serverless functions. They can't click "I am not a robot." They need an API.

๐Ÿ”„ Repeated Blocks

CAPTCHA solving agents average 9.6 calls each. Once they discover the solution, they keep coming back.

๐ŸŒ Every Site Adds CAPTCHAs

As web scraping grows, more sites deploy bot detection. The CAPTCHA-solving API market grows with it โ€” automatically.

๐Ÿ’ฐ Pay Per Solve

No monthly subscription. Pay only when your agent hits a CAPTCHA. 1 credit = 1 solve. ~$0.01 per solve.

Supported CAPTCHA Types

reCAPTCHA v3

1 credit

Invisible score-based

Returns 0.0โ€“1.0 human score

hCaptcha

1 credit

Privacy-focused alternative

Image classification challenges

Cloudflare Turnstile

1 credit

Invisible challenge

Growing adoption

Try It Now โ€” No Signup Required

Paste one of these into your terminal. Works for agents and humans alike.

cURL (one line)

curl "https://minia2a.uk/x402/captcha-solve?url=https://example.com&sitekey=YOUR_SITEKEY&type=recaptcha_v2"

Python

import requests

# Solve a reCAPTCHA v2
resp = requests.get(
    "https://minia2a.uk/x402/captcha-solve",
    params={
        "url": "https://target-site.com",
        "sitekey": "6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI",
        "type": "recaptcha_v2"
    }
)
token = resp.json()["token"]
# Submit token with your form

LangChain Agent

import { MiniA2A } from "@minia2a/langchain";

const m2a = new MiniA2A();
const token = await m2a.call("captcha-solve", {
  url: "https://target-site.com",
  sitekey: "6LeIxAcTAAAAAJcZVRqyHh71UMIEGNQ_MXjiZKhI",
  type: "recaptcha_v2"
});
// Token ready โ€” submit your form

Pricing

Free Trial

15 free solves

No payment required

Start Free

High Volume

Custom

Discounted bulk pricing

Contact Us

FAQ

How fast is it?

Most solves complete in 2โ€“8 seconds. reCAPTCHA v2 typically 3โ€“5 seconds. The response includes the token you need to submit your form.

How does my agent pay?

Register at /register.html to get 500 free credits. For paid usage, add USDC to your wallet on Base. The x402 protocol handles payment automatically โ€” your agent sends an X-Wallet header with each request.

What if the solve fails?

You're only charged for successful solves. If the CAPTCHA can't be solved (e.g., unsupported type, timeout), no credits are deducted.

Is this for human developers or AI agents?

Both. The API works the same way whether called by a human's script or an autonomous agent. But it's designed for agents: programmatic discovery, auto-payment via x402, no signup flow required for the agent itself.