
On this page
A CAPTCHA solver is software that automatically completes CAPTCHA challenges on behalf of an automated client. It receives the challenge from a target site, processes it using AI models, browser automation, or a human-in-the-loop service, and returns a token the site accepts as proof of being human — allowing a scraper, bot, or test runner to continue past the gate without manual intervention.
Quick facts
| Also known as | CAPTCHA bypass, CAPTCHA automation, anti-CAPTCHA |
|---|---|
| Common types solved | reCAPTCHA v2/v3, hCaptcha, Cloudflare Turnstile, FunCaptcha, image CAPTCHAs |
| Primary use case | Keeping scrapers, automated tests, and account workflows running |
| Typical pricing | $1–$3 per 1,000 solves (machine), $1–$2 per 1,000 (human) |
| Risk level | Medium — must respect site terms; widely used for public-data scraping and QA |
Code example
import requests
resp = requests.post(
'https://publisher.scrappey.com/api/v1',
json={
'cmd': 'request.get',
'url': 'https://example.com/protected',
'autoparse': True
},
headers={'Authorization': 'YOUR_API_KEY'}
)
# CAPTCHA + proxy + fingerprinting handled server-side
html = resp.json()['solution']['response']Related terms
Concept map
How CAPTCHA Solver connects
The terms most directly tied to this one. Hover a node to see its neighbours, click to preview, drag to rearrange.
Frequently asked questions
Are CAPTCHA solvers legal?
Using a solver on public data, your own accounts, or for QA testing is generally legal in most jurisdictions. Using one to bypass authentication you don't own, to violate a site's terms of service in a contractually enforceable way, or to commit fraud is not. The tool is neutral; the use case matters.
How accurate are CAPTCHA solvers?
Image and reCAPTCHA v2 solve rates from quality providers sit in the 90–99% range. Turnstile and reCAPTCHA v3 are harder because they score behavior, not just the challenge — accuracy depends as much on the surrounding fingerprint as on the solver itself.
How much does CAPTCHA solving cost?
Machine solvers typically charge $1–$3 per 1,000 solves. Human solvers are in the same range but slower. Integrated scraping APIs roll the cost into the per-request price, which is usually cheaper than solving at scale yourself.
Can sites detect that a CAPTCHA solver was used?
Not directly — the token a solver returns looks identical to one a human would produce. But sites detect the surrounding context: an IP with no browsing history, a missing TLS fingerprint, or a perfect 200ms response time are all stronger signals than the token itself.
Last updated: 2026-05-26