Tasks
Alix5sec Solver API
Updated 7/10/2026
The Solverify Alibaba x5sec NoCaptcha Solver API creates a task for pages protected by Alibaba's x5sec NoCaptcha interstitial (the "Sorry, we have detected unusual traffic from your network" slide-to-verify page) and returns the x5sec cookie plus all other cookies set on the domain in solution.cookies.
Request Parameters
| Field | Required | Description |
|---|---|---|
clientKey | Yes | Your API key. |
websiteURL | Yes | Full URL of the page protected by x5sec NoCaptcha. |
useragent | No | User-agent string to use for the browser session. Max 512 characters. |
proxyType | Yes | Proxy type. Only http is accepted. |
proxyAddress | Yes | Proxy IP address or hostname. |
proxyPort | Yes | Proxy port. Numeric string, 1 to 5 digits. |
proxyLogin | Yes | Proxy username. |
proxyPassword | Yes | Proxy password. |
The
x5seccookie is IP-bound. A proxy is strongly recommended — replaying the cookie from a different IP than the one that solved the challenge will not lift the block. Use the same proxy for any follow-up business request.
If you provide useragent, use a desktop Chrome or Chromium user-agent. Firefox, Edge, Opera, iOS, and Android user-agents are rejected.
Create Task Example
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "alix5sec",
"websiteURL": "https://login.aliexpress.com/user/buyer/login/loginByPwd",
"useragent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36",
"proxyType": "http",
"proxyAddress": "1.1.1.1",
"proxyPort": "8080",
"proxyLogin": "username",
"proxyPassword": "password"
}
}
Create Response
{
"errorId": 0,
"taskId": "UUID"
}
Result Example
{
"errorId": 0,
"status": "completed",
"solution": {
"value": "7b22617365727665722d696e746c3b33223a22307c434a76777564494745494355736f67464d496d536c7444352f2f2f2f2f77453d222c2274223a313738333532373435392c22733b32223a2231653562313932633263363130383364227d",
"cookies": {
"cna": "H2bVImLv4gUCAbnRxKC80C9X",
"xman_t": "3ZMT4QP+ScFwl43ld5PM+nfmWejaH71WI55ppDtDCVW1tUDriqVUWohFihaszqm1",
"xman_f": "Uqbga6J5MfoxXsJnpPIXA7FR0hR29o2ZL5JnPlHr6EZ6hEaxDlq6p805Tz03CU+ycUm7SOtB8iPOZr9piWUTIQNMP87W/2oUKH7GQ6oTyvReTITYRkz/UQ==",
"x5sec": "7b22617365727665722d696e746c3b33223a22307c434a76777564494745494355736f67464d496d536c7444352f2f2f2f2f77453d222c2274223a313738333532373435392c22733b32223a2231653562313932633263363130383364227d",
"tfstk": "gqgISaVpiS2wN7URNkAw53QuBEaSNC82y_N-ibQFwyUpNYMxdurJxY85PXc8aDyULcwSBAwLpWyFPuetUM5etuk6NAHmTuzKUY6SLARRTzbUNAitjpvH-85njxlA82-3zaa3rzp23E82tX4uyUVPtJB3BSFkzMe8yy4ObNUtCE8qtXfU9Il9u0oGw8eQezEL2OUTI7V8yJeJ1RF7igBKeYd_6SPVpgIdy1d_ZRe8yzH8WCNzB8HmwsNWAJcBaUzm_CA4DXe1ya3pxkwXBJNg_VNQA-ETCaFE5WZQHX3D7so8Gmg_0DdpvSa7IX0aALWurfojF0Hk0G4IwDH0mcARj5mKCVZmrOpzxbnsCWMehT2r-Xu7LXtpCfagdbE7z3IukcFqiJDdaGzrRf3UsY1AYXE0dPNizdbLFcn-8k4lpKrnwcM_OAJGf5iqKqatkdbSHguAu-_Npg1_maN_3CO1qgYGFDMs4azAPkFgOlR619nuv5V_3CO1qgqLsWww1C6Kq"
},
"useragent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36"
},
"errorCode": null,
"errorDescription": null
}
solution.value contains the x5sec cookie value. solution.cookies contains all cookies captured from the browser session, including x5sec. Replay the full cookie set (not just x5sec alone) against the target domain — some Alibaba endpoints require accompanying session cookies (xman_t, xman_f, cna, etc.) alongside x5sec to lift the block.
Timeout
Alibaba x5sec tasks can run for up to about 90 seconds before timing out internally.
Next Steps
After creating an Alibaba x5sec task, poll the Get Task Result API with the returned taskId. For validation and capacity errors, see Solverify API Error Codes.