Turnstile

TasksUpdated 12/25/2025
POST
https://solver.solverify.net/createTask
  • Parameters:
    • clientKey - Your API key
    • websiteURL - The full URL of target web page where the captcha is loaded
    • websiteKey - Turnstile sitekey. Can be found inside data-sitekey
    • cdata - 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
}