Solve reCaptcha V2

Use this type of task to automatically solve Google Recaptcha V2. The result of the job is a g-response value. Use it to submit the form on the target website.

Recaptcha V2 checkbox

Task object

PropertyTypeRequiredPurpose
typeStringYesRecaptchaV2TaskProxyless
websiteURLStringYesAddress of a target web page. Can be located anywhere on the web site, even in a member area. Our workers don't navigate there but simulate the visit instead.
websiteKeyStringYesRecaptcha website key.
recaptchaDataSValueStringNoValue of 'data-s' parameter. Applies only to reCaptchas on Google web sites.
isInvisibleBooleanNoSpecify whether or not reCaptcha is invisible. This will render an appropriate widget for our workers.

Request example

curl -i -H "Accept: application/json" \
     -H "Content-Type: application/json" \
     -X POST -d '{
    "clientKey":"YOUR_API_KEY_HERE",
    "task":
        {
            "type":"RecaptchaV2TaskProxyless",
            "websiteURL":"http://mywebsite.com/recaptcha/test.php",
            "websiteKey":"6Lc_aCMTAAAAABx7u2N0D1XnVbI_v6ZdbM6rYf16"
        },
    "softId": 0
}' createTask

Task solution object

PropertyTypePurpose
gRecaptchaResponseStringToken string required for interacting with the submit form on the target website.
cookiesArrayOptional array of cookies used for solving reCaptchas. Applies only for google.com domains and subdomains.

Response example

{
    "errorId":0,
    "status":"ready",
    "solution":
    {
        "gRecaptchaResponse":"3AHJ_VuvYIBNBW5yyv0zRYJ75VkOKvhKj9_xGBJKnQimF72rfoq3Iy-DyGHMwLAo6a3"
    },
    "cost":"0.001500",
    "ip":"46.98.54.221",
    "createTime":1472205564,
    "endTime":1472205570,
    "solveCount":"0"
}