Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
POST https://api.ez-captcha.com/createTask

Content-Type: application/json

{
    "clientKey": "YourClientKey",
    "task": {
        "websiteURL": "https://xxx.com",
        "type": "CloudFlare5STask",
        "proxy": "http://username:password@ip:port",
        "rqData":{                   //optional
            "mode":"JSON",//JSON or FORM is determined based on the submission method of the webpage. If you need to send it in POST format, you must add this value
            "name1":"value1",//your key
            "name2":number123456,
            ...
        },

    }
}

Reponse Example

...