#
Supported Captcha Types
CaptchaSolv supports a wide range of captcha types. Each type has Proxyless and Task (with proxy) variants.
#
Quick Reference
#
Task Type Naming
All task types follow this naming convention:
{CaptchaName}Task[Proxyless]
Recommendation
Use Proxyless variants when possible. They're faster and more reliable.
#
Common Parameters
All captcha types share these parameters:
#
Proxy Format
For tasks that require a proxy:
protocol://user:pass@host:port
Examples:
http://user:pass@proxy.example.com:8080
socks5://user:pass@proxy.example.com:1080
Supported protocols: http, https, socks4, socks5
#
Choose the Right Type
flowchart TD
A[What captcha do you see?] --> B{reCAPTCHA?}
B -->|Yes| C{Version?}
C -->|Checkbox| D[RecaptchaV2TaskProxyless]
C -->|Invisible/Score| E[RecaptchaV3TaskProxyless]
B -->|No| F{Cloudflare?}
F -->|Yes| G[TurnstileTaskProxyless]
F -->|No| H{Bot Protection?}
H -->|Akamai| I[AkamaiTaskProxyless]
H -->|Kasada| J[KasadaTaskProxyless]
H -->|DataDome| K[DataDomeTaskProxyless]
#
Next Steps