Turnstile
Tasks•Updated 12/25/2025
POST
https://solver.solverify.net/createTask
- Parameters:
clientKey- Your API keywebsiteURL- The full URL of target web page where the captcha is loadedwebsiteKey- Turnstile sitekey. Can be found inside data-sitekeycdata- The cdata value for the turnstile (optional)action- The action value of the turnstile (optional)
Example:
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "turnstile",
"websiteURL": "https://example.com",
"websiteKey": "example_key",
"cdata": "example_cdata", // optional if website does not require cdata remove this line
"action": "example_action" // optional if website does not require action remove this line
}
}
Response Example:
{
"errorId": 0,
"taskId": "UUID"
}
Result Example:
{
"errorId": 0,
"status": "completed",
"solution": {
"value": "0.MpR_tg_Jc9krcpY7vsFHAs"
},
"errorCode": null,
"errorDescription": null
}