🤖GeeTest V4 Proxyless

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

GeeTest solver doesn't require your own proxies, so there's only the proxyless task.

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": "YOUR_API_KEY",
    "task": {
        "type":"GeetestTaskProxyless",
        "websiteURL":"WEBSITE_URL",
        "captchaId":"CAPTCHA_ID"
    }
}

Task Parameter Table

ParametersRequiredDescription

type

true

GeeTestTaskProxyLess

websiteURL

true

The website address in which you're solving the captcha for.

captchaId

true

Captcha ID parameter to be passed to our solver, only for GeeTest V4.

geetestApiServerSubdomain

false

Optional custom subdomain for solver.

Task Created Response

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

errorId

0: Without error. 1: Error with request.

errorCode

Short code for error type.

errorDescription

More detailed description of the error that occurred.

taskId

Task ID, provided for synchronous tasks to be pushed to /getTaskResult

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": {
    "captcha_id": "e392e1d7fd421dc63325744d5a2b9c73",
    "captcha_output": "AoN_jUGyObLxV8m431BLICC_NXDjolCDId...",
    "gen_time": "1717557055",
    "lot_number": "6faeebf6255f45aa9859ef2abc5f66ce",
    "pass_token": "1809c1398e9d6121bd09fef2808b8a4460c271cf5e1bf78017000a628825d985",
    "risk_type": "slide"
  }
}
ParametersDescription

captcha_id

The captcha ID originally passed to the solver.

captcha_output

Likely to be required for verification.

gen_time

Likely to be required for verification.

lot_number

Likely to be required for verification.

pass_token

Likely to be required for verification.

risk_type

Likely to be required for verification.

Last updated