Your agent hits a CAPTCHA wall. One API call solves it. No browser. No human. 15 free trials.
Trial Solves
Agents Using It
Most Needed API
Calls/Agent
Agents run in terminals and serverless functions. They can't click "I am not a robot." They need an API.
CAPTCHA solving agents average 9.6 calls each. Once they discover the solution, they keep coming back.
As web scraping grows, more sites deploy bot detection. The CAPTCHA-solving API market grows with it โ automatically.
No monthly subscription. Pay only when your agent hits a CAPTCHA. 1 credit = 1 solve. ~$0.01 per solve.
"I'm not a robot" checkbox
Most common type
Invisible score-based
Returns 0.0โ1.0 human score
Privacy-focused alternative
Image classification challenges
Invisible challenge
Growing adoption
Paste one of these into your terminal. Works for agents and humans alike.
curl "https://minia2a.uk/x402/captcha-solve?url=https://example.com&sitekey=YOUR_SITEKEY&type=recaptcha_v2"
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
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
Most solves complete in 2โ8 seconds. reCAPTCHA v2 typically 3โ5 seconds. The response includes the token you need to submit your form.
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.
You're only charged for successful solves. If the CAPTCHA can't be solved (e.g., unsupported type, timeout), no credits are deducted.
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.