Aliyun

TasksUpdated 4/22/2026
POST
https://solver.solverify.net/createTask
  • Parameters:
    • clientKey - Your API key
    • websiteURL - The full URL of the page where the Aliyun Captcha 2.0 widget is displayed
    • websiteKey - The SceneId value passed to initAliyunCaptcha({ SceneId: '...' })
    • prefix - The Identity Prefix from the customer's Aliyun Captcha console (the subdomain portion of <prefix>.captcha-open.aliyuncs.com)
    • region - Aliyun Captcha region. Allowed: sgp (Singapore / international, default) or cn (Chinese mainland)
    • proxyType - Proxy type allowed: http
    • proxyAddress - Proxy IP address or hostname
    • proxyPort - Proxy port
    • proxyLogin - Login for proxy (optional)
    • proxyPassword - Password for proxy (optional)

NOTE: The proxy should be the same IP used for any follow-up business request made with the resulting token. Aliyun's device token is bound to the network path that generated it.

Example:

{
  "clientKey": "YOUR_API_KEY",
  "task": {
    "type": "aliyun",
    "websiteURL": "https://h5.rsnvip7.fun/",
    "websiteKey": "s7r707fw8",
    "prefix": "zir9dtu",
    "region": "sgp",
    "proxyType": "http",
    "proxyAddress": "1.1.1.1",
    "proxyPort": "8080",
    "proxyLogin": "username",
    "proxyPassword": "password"
  }
}

Response Example:

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

Result Example:

{
  "errorId": 0,
  "status": "completed",
  "solution": {
    "value": '{"sceneId":"s7r707fw8","certifyId":"Zfx3380sm1","deviceToken":"U0dfV0VCIzM3OTVkMjgyNDJhMTE2MTli...","data":"JRMlgg1EDSM6Rg4LRQRHM1ICsZIZfhFXaGEBckRX..."}'
  },
  "errorCode": null,
  "errorDescription": null
}