🦀
Crabtcha Documentation
  • Main
    • Welcome to Crabtcha !
    • Get Started
    • Compliance and Abuse
  • API Guide
    • API reference
      • createTask : creating a task
      • getTaskResult : getting task result
      • getBalance : get account balance
    • Using proxies
    • Error Codes
  • Task types
    • Cloudflare WAF
    • Cloudflare Turnstile
  • API reference
    • Extras
      • Commonly used TLS libraries
      • User agent
Powered by GitBook
On this page
  • Proxy requirements
  • Proxy format
  • Proxy format examples
  1. API Guide

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.

During the beta test our current server is in EU, the route lenght might extend solve time.

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"
}

PreviousgetBalance : get account balanceNextError Codes

Last updated 3 months ago