Using proxies

Some captchas require you to use the same IP addresse that you have used with us during the solving process, we allow users to provide their own Proxy to use with such captcha tasks.

Proxy requirements

  • Must be SOCKS5, HTTP, HTTPS Protocol.

  • Must support authentication.

  • Residential quality is prefered for success rate.

Proxy format

We currently have a specific proxy format

Key
Type
Description

proxyType

String

http,socks5 or socks4

proxyAddress

String

either a hostname or an IP without the protocol "http://"

proxyPort

Integer

port number.

proxyLogin

String

proxy login

proxyPassword

String

proxy password

Proxy format examples

Using IP address directly.

"task": {
    "proxyType": "http", // or socks4 or socks
    "proxyAddress": 192.168.1.69,
    "proxyPort": 69,
    "proxyLogin": "somelogin",
    "proxyPassword": "somepassword"
}

Or using hostname.

"task": {
    "proxyType": "http", // or socks4 or socks5
    "proxyAddress": "john.proxyprovider.com",
    "proxyPort": 69,
    "proxyLogin": "somelogin",
    "proxyPassword": "somepassword"
}

Last updated