🏠Using Proxies

In some cases, captchas additionally verify the IP address of the challenge solver. In this case, you can optionally add your own proxy to the solution process.

Tasks with Proxyless use our own in-house proxies & don't require your own.

Using Your Own Proxies

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

{
  "clientKey": "DATALABS_API_KEY",
  "task": {
    "type": "TASK_DATA",
    "websiteURL": "WEBSITE_URL",
    "websiteKey": "WEBSITE_KEY",
    "proxyType": "http",
    "proxyAddress": "1.1.1.1",
    "proxyPort": "9999",
    "proxyLogin": "username", // Optional
    "proxyPassword": "password" // Optional
  },
  "callbackUrl": "https://example.com/callback"
}

Proxy Parameters

Last updated