Automated Captcha Solving
Big picture with robots drinking captchas
Prices of the venue
CAPTCHA typeSolving speedPrice per 1000 items
Simply send your captcha to our API and we’ll solve it
First, create a task with the captcha
Read the documentation
curl -i -H "Accept: application/json" \
     -H "Content-Type: application/json" \
     -X POST -d '{
    "clientKey":"YOUR_API_KEY",
    "task":
        {
            "type":"RecaptchaV2TaskProxyless",
            "websiteURL":"http://makeawebsitehub.com/recaptcha/test.php",
            "websiteKey":"6LfI9IsUAAAAAKuvopU0hfY8pWADfR_mogXokIIZ"
        }
}' createTask
{
    "errorId": 0,
    "taskId": 123456789
}
Our software will process your task faster and cheaper than any human-powered services.
Recaptcha: 5 s
HCaptcha: 20 s
Image captcha: 2 s
Average solving time, based on 1 hour stats.
Then, get the solution
Read the documentation
curl -i -H "Accept: application/json" \
-H "Content-Type: application/json" \
-X POST -d '{
  "clientKey":"YOUR_API_KEY",
  "taskId":123456789
}' getTaskResult
{
    "errorId":0,
    "status":"ready",
    "solution": {
        "gRecaptchaResponse":"3AHJ_VuvYIBNBW8oq3Iy-DyGHMwLAo6a3..."
    }
}