Skip to content
On this page
Home
>API
>Parameters

General parameter description

The full parameter description is below, but you can also check out How to Use Proxy

json
{
    "clientKey": "YOUR_API_KEY", //your api key
    "appId": "YOUR_DEVELOPER_APP_ID",//If you're a developer, you definitely need to use this parameter
    "task": {
        "websiteURL": "https://www.google.com/recaptcha/api2/demo",//site
        "websiteKey": "6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_mJ-",//Some captcha use siteKey
        "type": "ReCaptchaV2Task",//Typically, task types that carry the ProxyLess do not require proxy

        //You can send the proxy information with one of these proxy format, please read carefully
        // proxy format 1
        "proxyType": "https",// socks5 | http | https
        "proxyAddress": "198.199.100.10",
        "proxyPort": 3949,
        "proxyLogin": "user",
        "proxyPassword": "pass", 

        // proxy format 2
        "proxy": "socks5:192.191.100.10:4780:user:pwd",
        //or
        "proxy": "198.199.100.10:4780:user:pwd", //You don't need to put the user:pwd if it's whitelisted IP proxy
    }
}