...
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. |
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", }, } } |
Reponse Example
Code Block |
---|
{ "errorId": 0, "errorCode": "", "errorDescription": "", "taskId": "61138bb6-19fb-11ec-a9c8-0242ac110006" // Please save this ID for next step } |
...