- Popular captchas
- Entry job
- API
- Proxy
- Tools, Guides, Learning Hub & Resources
Software
Automation software that has already integrated our service
Blog
Service updates and new features
How-to
Tutorials, samples, and guides
Captcha demos
Sample forms with captcha demo
Browse GitHub repository for SDKs, code samples, and ready-to-use integration examples
MTCaptcha
Token-based method for automated solving of MTCaptcha.
Task types
- MtCaptchaTaskProxyless - we use our own proxies pool to load and solve the captcha
- MtCaptchaTask - we use your proxies
Task specification
MtCaptchaTask task type specification
MtCaptchaTask extends MtCaptchaTaskProxyless adding a set of proxy-related parameters listed below
Request examples
Method: createTask
API endpoint: https://api.2captcha.com/createTask
MtCaptchaTaskProxyless
json
{
"clientKey": "{{clientKey}}",
"task": {
"type": "MtCaptchaTaskProxyless",
"websiteURL": "https://service.mtcaptcha.com/mtcv1/demo/index.html",
"websiteKey": "MTPublic-DemoKey9M"
}
}
MtCaptchaTask
json
{
"clientKey": "{{clientKey}}",
"task": {
"type": "MtCaptchaTask",
"websiteURL": "https://service.mtcaptcha.com/mtcv1/demo/index.html",
"websiteKey": "MTPublic-DemoKey9M",
"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
json
{
"errorId": 0,
"status": "ready",
"solution": {
"token": "v1(00cc43a5,1adfe4b4,MTPublic-DemoKey9M,0080ab49...IJexMsishqlg**)"
},
"cost": "0.00299",
"ip": "1.2.3.4",
"createTime": 1695129688,
"endTime": 1695129702,
"solveCount": 1
}
