Every CAPTCHA type CaptchaAI can solve — with method identifiers, required parameters, and capabilities — plus the beta types and the types that are not yet supported.
GeeTest v4 support is on the CaptchaAI roadmap and is not yet available — it can only be described as coming soon. Use GeeTest v3 today; v4 will be added to this matrix when it ships.
These types are supported in beta (rolled out May–June 2026). Always label them "beta" and do not quote a success rate without a measured figure and date.
CaptchaAI does not currently solve hCaptcha or FunCaptcha. GeeTest v4 support is coming soon.
Feature Comparison Summary
Capability
Token CAPTCHAs
Interactive
Image/OCR
Browser required
No
Extraction only
No
Proxy support
Yes
Yes
N/A
Token output
Single string
Multiple fields
Text string
Token expiry
120-300s
60-120s
N/A
Callback support
Yes
Yes
N/A
Batch solving
Yes
Yes
Yes
Type Detection Helper
import re
def detect_captcha_type(page_source, page_url=""):
"""Detect CAPTCHA type from page HTML and return recommended method."""
checks = [
(r'data-sitekey.*cf-turnstile|class=["\']cf-turnstile', "turnstile"),
(r'challenge-platform.*managed|cf-chl-widget', "cloudflare_challenge"),
(r'data-sitekey.*h-captcha|class=["\']h-captcha', "hcaptcha"),
(r'initGeetest4|captcha_id', "geetest_v4"),
(r'initGeetest|gt=\w{32}', "geetest_v3"),
(r'data-sitekey.*recaptcha|grecaptcha|recaptcha/api', "recaptcha"),
(r'bls.*captcha|captcha.*bls', "bls"),
(r'captcha.*img|img.*captcha|captchaImage', "image_ocr"),
]
for pattern, captcha_type in checks:
if re.search(pattern, page_source, re.IGNORECASE):
return captcha_type
return "unknown"
# Usage
captcha_type = detect_captcha_type(page_html)
print(f"Detected: {captcha_type}")
FAQ
Does CaptchaAI support all reCAPTCHA versions?
Yes — v2 checkbox, v2 invisible, v3 score-based, and Enterprise are all supported with the same userrecaptcha method.
What's the fastest CAPTCHA type to solve?
Image/OCR CAPTCHAs typically solve in 5-15 seconds. Turnstile and GeeTest are the fastest among token-based types.
Can I solve multiple CAPTCHA types in one project?
Yes. Use the type detection helper above to identify the CAPTCHA, then submit with the appropriate method parameter. CaptchaAI handles routing internally.
Compare AI-powered Captcha AI with human CAPTCHA solving services on speed, accuracy, cost, scalability, and r...
Jan 17, 2026
Reference
End-to-end guide covering CAPTCHA fundamentals, solving approaches, API integration, error handling, scaling, and production deployment with Captcha AI.
Send CAPTCHA pipeline alerts to Discord — webhook integration for balance warnings, error spikes, queue status...
Apr 09, 2026
Troubleshooting
A practical debugging system for sitekey, page URL, polling, token injection, callback, timeout, and browser-state failures when Captcha AI returns a valid-look...