Affiliate

If you are a developer and you integrate our captcha solution into your product then you can get 10% of the value of each successful task.

Object structure

Parameter
Type
Required
Value

affiliateid

string

no

YOUR_Affiliate_ID, get from https://betacaptcha.com/

Code example (Python)

import requests

# Creat job
json_data = {
    "api_token": "YOUR_API_KEY",
    "affiliateid": "YOUR_Affiliate_ID",
    "data": {
        "type_job": "recaptcha",
        "sitekey": "site-key",
        "siteurl": "website url"
    }
}
createJob = requests.post("https://betacaptcha.com/api/createJob", json=json_data)

Last updated