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.

| Property | Type | Required | Purpose |
|---|---|---|---|
| type | String | Yes | RecaptchaV2TaskProxyless |
| websiteURL | String | Yes | Address 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. |
| websiteKey | String | Yes | Recaptcha website key. |
| recaptchaDataSValue | String | No | Value of 'data-s' parameter. Applies only to reCaptchas on Google web sites. |
| isInvisible | Boolean | No | Specify whether or not reCaptcha is invisible. This will render an appropriate widget for our workers. |
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| Property | Type | Purpose |
|---|---|---|
| gRecaptchaResponse | String | Token string required for interacting with the submit form on the target website. |
| cookies | Array | Optional array of cookies used for solving reCaptchas. Applies only for google.com domains and subdomains. |
| userAgent | String | User-Agent of the worker's browser. Use it when you submit the response token. |
{
"errorId":0,
"status":"ready",
"solution":
{
"gRecaptchaResponse":"3AHJ_VuvYIBNBW5yyv0zRYJ75VkOKvhKj9_xGBJKnQimF72rfoq3Iy-DyGHMwLAo6a3",
"userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:102.0) Gecko/20100101 Firefox/102.0"
},
"cost":"0.001500",
"ip":"46.98.54.221",
"createTime":1472205564,
"endTime":1472205570,
"solveCount":"0"
}