Cloudflare Interstitial

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
    • useragent - User-Agent string to use for the request (optional)
    • proxyType - Proxy type allowed: http
    • proxyAddress - Proxy IP address or hostname
    • proxyPort - Proxy port
    • proxyLogin - Login for proxy (optional)
    • proxyPassword - Password for proxy (optional)

Example:

{
  "clientKey": "YOUR_API_KEY",
  "task": {
    "type": "interstitial",
    "websiteURL": "https://example.com",
    "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36",
    "proxyType": "http",
    "proxyAddress": "1.1.1.1",
    "proxyPort": "80",
    "proxyLogin": "username",
    "proxyPassword": "password"
  }
}

Response Example:

{
  "errorId": 0,
  "taskId": "UUID"
}

Result Example:

{
  "errorId": 0,
  "status": "completed",
  "solution": {
    "value": "dce6748725944f29b43b64a5eaad3a",
    "cookies": {
      "cf_clearance": ".AdOHyy60coo8q0wL6TAJFu2V1"
    },
    "useragent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36"
  },
  "errorCode": null,
  "errorDescription": null
}