🏠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

ParametersTypeDescription

proxyType

string

The type of proxy, accepts values: http, https, socks4, and socks5.

proxyAddress

int

The IPv4/IPv6 IP for your proxy (Host names, non-transparent, and local network proxies are not allowed)

proxyPort

string

The proxy port

proxyLogin

string

The proxy username

proxyLogin

string

The proxy password

Last updated