CyberSiARA
Token-based method for automated solving of CyberSiARA
.
Task types
- AntiCyberSiAraTaskProxyless - we use our own proxies pool to load and solve the captcha
- AntiCyberSiAraTask - we use your proxies
Task specification
Property | Type | Required | Description |
---|---|---|---|
type | String | Yes | Task type: AntiCyberSiAraTask AntiCyberSiAraTaskProxyless |
websiteURL | String | Yes | The full URL of target web page where the captcha is loaded. |
SlideMasterUrlId | String | Yes | The value of the MasterUrlId parameter obtained from the request to the endpoint API/CyberSiara/GetCyberSiara . |
userAgent | String | Yes | User-Agent of your browser will be used to load the captcha. Use only modern browser's User-Agents |
AntiCyberSiAraTask Task type specification
AntiCyberSiAraTask
extends AntiCyberSiAraTaskProxyless
adding a set of proxy-related parameters listed below
Property | Type | Required | Description |
---|---|---|---|
proxyType | String | Yes | Proxy type: http socks4 socks5 |
proxyAddress | String | Yes | Proxy IP address or hostname |
proxyPort | Integer | Yes | Proxy port |
proxyLogin | String | No | Login for basic authentication on the proxy |
proxyPassword | String | No | Password for basic authentication on the proxy |
Request examples
Method: createTask
API endpoint: https://api.2captcha.com/createTask
AntiCyberSiAraTaskProxyLess
{
"clientKey":"YOUR_API_KEY",
"task": {
"type":"AntiCyberSiAraTaskProxyless",
"websiteURL":"https://www.cybersiara.com/book-a-demo",
"SlideMasterUrlId":"OXR2LVNvCuXykkZbB8KZIfh162sNT8S2",
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36"
}
}
AntiCyberSiAraTask
{
"clientKey":"YOUR_API_KEY",
"task": {
"type":"AntiCyberSiAraTask",
"websiteURL":"https://www.cybersiara.com/book-a-demo",
"SlideMasterUrlId":"OXR2LVNvCuXykkZbB8KZIfh162sNT8S2",
"userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36",
"proxyType":"http",
"proxyAddress":"1.2.3.4",
"proxyPort":"8080",
"proxyLogin":"user23",
"proxyPassword":"p4$w0rd"
}
}
Response example
Method: getTaskResult
API endpoint: https://api.2captcha.com/getTaskResult
{
"errorId": 0,
"status": "ready",
"solution": {
"token": "eyJhbGciO...Tc4NTM3MQ=="
},
"cost": "0.00299",
"ip": "1.2.3.4",
"createTime": 1692863536,
"endTime": 1692863556,
"solveCount": 1
}