createTask#


This method is used to create a new Captcha recognition task for the selected Captcha task type . Returns the task id or Error Codes

API endpoint: https://api.nextcaptcha.com/createTask

method: POST

Content type: application/json

Request properties#

nametypeRequiredDescription
clientKeyStringYesYour API key
taskObjectYesAn object that describes the captcha task. For specific types, please refer to the Captcha task type document.
callbackUrlStringNoThe URL of the registered web server used to receive and process the captcha solution results
softIdIntegerNoYour software ID registered in Our software catalog

Request example#

{
    "clientKey":"api key",
    "task": {
        "type":"Recaptchav2TaskProxyless",
        "websiteURL":"https://www.google.com/recaptcha/api2/demo",
        "websiteKey":"6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_mJ-"
    }
}

Related Links#