🤖ReCaptcha V3 Enterprise Proxyless

Recaptcha V3 Enterprise Solver Task (Requires your own proxies) & Required Parameters

Rest API Endpoint: https://captcha.datalabs.net/createTask

Creating The Task

POST https://captcha.datalabs.net/createTask
Host: captcha.datalabs.net
Content-Type: application/json

{
  "clientKey": "DATALABS_API_KEY",
  "task": {
    "type": "RecaptchaV3EnterpriseTaskProxyless",
    "websiteURL": "https://google.com/recaptcha/api2/demo",
    "websiteKey": "6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_mJ-",
    "enterprisePayload": {
        "s": "S_DATA_VALUE" // Optional custom value
      },
    "isInvisible": true,
    "pageAction": "submit_form", // Optional custom action value
    "minScore": "0.3", // Optional minimum validation score for stronger targets
    },
  "callbackUrl": "https://example.com/callback"
}

Task Parameter Table

Task Created Response

{
  "errorId":0,
  "taskId":997993082
}

Retrieving the Solution

POST https://captcha.datalabs.net/getTaskResult
Host: captcha.datalabs.net
Content-Type: application/json

{
  "clientKey": "DATALABS_API_KEY",
  "taskId": "997993082"
}

Successful Solution Response

{
  "errorId":0,
  "status":"ready",
  "solution": {
    "gRecaptchaResponse":"03AFcWeA6P_W0urJnFwK-f2psFTXp..."
  }
}

Last updated