🤖Cloudflare Turnstile & Challenge

Cloudflare Solver Task (Solved with our in-house proxies) & Required Parameters

We support the following Cloudflare types:

Cloudflare Turnstile: Manual, Non-Interactive & Invisible

Cloudflare Challenges: 5S Challenge & Non-Interactive Turnstiles.

PLEASE NOTE: CloudFlare Challenges have been showing increase signs of instability due to recent Cloudflare updates. We apologize for any inconvenience this may cause. This does not impact the stability of the regular Turnstile solver.

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": "AntiTurnstileTaskProxyLess",
    "websiteURL": "WEBSITE_URL",
    "websiteKey": "0x4*****************",
    "metadata": {
       "action": "search",  // Optional
       "cdata": "0000-1111-2222-3333-example-cdata"  // Optional
    }
  }
}

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": {
    "token": "0.mF74FV8wEufAWOdvOak_x...",
    "type": "turnstile",
    "userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) Appl..."
  }
}

Last updated