Live solver running below — try it

Solve any CAPTCHA
with one API call

CaptchaForge turns CAPTCHAs into a single HTTP request. Image and text solved by AI vision in seconds; reCAPTCHA and hCaptcha solved by a real human network.

99.4%
Solve accuracy
3.2s
Avg image solve
120M+
CAPTCHAs / month
0.4%
Failed (auto-refunded)

Watch it solve, right now

This isn't a video. The image below is generated in your browser and sent to the real /api/solve endpoint — the same one your code would call.

Live solver — real API call
POST /api/solve

Click solve to send the image to the solver API and read back the answer.

And token CAPTCHAs, too

Below is a real Cloudflare Turnstile widget. reCAPTCHA v2, hCaptcha and Turnstile route to the human-solver network and return a token.

Cloudflare Turnstile — live widget
type: turnstile

Loading the live Cloudflare Turnstile widget…

Waiting for the token…

In production this widget is solved by a human in the solver portal; the token flows back to the API caller.

Every CAPTCHA type, one endpoint

Switch the type field — the API stays the same.

Image CAPTCHA

Live

Distorted character images, math captchas, custom image text.

AI vision + OCR$0.50 / 1k

Text CAPTCHA

Live

Question-based and alphanumeric text challenges.

AI vision + OCR$0.50 / 1k

reCAPTCHA v2

Live

"I'm not a robot" checkbox and image grid challenges.

Human solver pipeline$2.00 / 1k

hCaptcha

Live

Image classification challenges used across the web.

Human solver pipeline$2.00 / 1k

Cloudflare Turnstile

Live

Cloudflare's checkbox widget. Returns a cf-turnstile-response token.

Human solver pipeline$2.00 / 1k

reCAPTCHA v3

Beta

Invisible score-based challenge. Needs a real browser session.

Browser session farm$3.00 / 1k

How it works

01

Send the CAPTCHA

One POST to /v1/solve with an image, or a sitekey + page URL for token CAPTCHAs.

02

We solve it

Image & text go to our AI-vision + OCR engine. reCAPTCHA & hCaptcha route to our human solver network.

03

Get the answer

Poll once and read back the text or a ready-to-submit token. Failed solves are auto-refunded.

bash
curl https://api.captchaforge.dev/v1/solve \
  -H "Authorization: Bearer cf_demo_live_key" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "recaptcha_v2",
    "sitekey": "6Le-wvkSAAAAAPBMRTvw0Q4Muexq1bi0DJwx_mJ-",
    "pageurl": "https://example.com/login"
  }'

# → { "taskId": "task_xxx", "status": "queued" }
# poll GET /v1/result?id=task_xxx → { "status":"solved", "token":"03AGdBq..." }

Frequently asked

Is using a CAPTCHA solver legal?+

CAPTCHA solving is used legitimately for accessibility, QA automation, monitoring and authorized data collection. You are responsible for complying with the terms of the sites you automate. We prohibit fraud, spam and abuse.

How do you solve reCAPTCHA and hCaptcha?+

Token-based CAPTCHAs can't be solved by an algorithm — the token is bound to a real human interaction. We route them to a distributed network of human solvers who complete the live widget; the resulting token is returned to you.

What's your accuracy?+

Image and text CAPTCHAs solve at ~99% with AI vision. Any solve that fails validation is automatically refunded to your balance.

How fast is it?+

Image CAPTCHAs return in ~3 seconds. Human-solved token CAPTCHAs typically return in 20–40 seconds depending on queue depth.

Ship past the CAPTCHA wall today

Free credits on signup. No card required. The demo key already works in your terminal.