Versions Compared

Key

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

...

Parameter

Type

Required

Description

clientKey

string

yes

Your client key

type

string

yes

CloudFlare5STask

websiteURL

string

yes

website url, usually a fixed value.

proxy

string

yes

The proxy you used to access the website

rqData

Object

optional

Turnstile extra data (Document)

rqData.xxx

string

optional

You can set the key(xxx) and value.if you add this parameter, it will be sent as post request, like:

rqData: { "name": "value" }

Request Example

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

Content-Type: application/json

{
    "clientKey": "cc9c18d3e263515c2c072b36a7125eecc078618f",
    "task": {
        "websiteURL": "https://xxx.com",
        "type": "CloudFlare5STask",
        "proxy": "http://username:password@ip:port",
        "rqData":{                   //optional
            "TheKey":"TheValue",
        },

    }
}

...