Test Captcha Solving Live
See AZcaptcha in action. Pick a captcha type, enter your API key, and watch it solve in real time β no code required.
How it works
Three steps to verify AZcaptcha solves your captchas
Enter API Key
Paste your AZcaptcha API key in the field above. It's saved locally so you only need to enter it once.
Click Solve
Hit the "Solve with AZcaptcha" button under any captcha widget. The task is submitted to our solving network instantly.
Get Result
Receive the solved token in seconds. Copy it with one click and use it in your application or automation script.
Text Captchas
Classic distorted-text images solved by our OCR engine. Submit the image as base64 and get back the text answer.
Image / Text Captcha
Distorted text image that a human (or our OCR) must read. Submit the image as base64 via /in.php?method=base64 and receive the solved text.
API usage β add these parameters to your request
API V1 (form-encoded):
POST /in.php
key=YOUR_API_KEY
method=base64
body=<BASE64_IMAGE>
module=azcaptcha_v2
textinstructions=only digits
Or as URL: ?module=azcaptcha_v2&textinstructions=...
API V2 (JSON / createTask):
POST /createTask
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "ImageToTextTask",
"body": "<BASE64_IMAGE>",
"module": "azcaptcha_v2",
"textinstructions": "only digits"
}
}
Use module to select solver. textinstructions passes extra hints to the solver. Legacy: textinstructions=azcaptcha_v2 still works.
reCAPTCHA v2 Grid
Image grid challenge β upload a 3×3 or 4×4 reCAPTCHA grid screenshot with instructions (e.g. “select all buses”) and get back the cell indices to click.
Challenge Captchas
These captchas return a cryptographic token you submit with the form. Our workers solve them automatically.
reCAPTCHA v2
Google's checkbox and image challenge captcha. Widely used on login forms and sign-up pages. Returns a g-recaptcha-response token.
reCAPTCHA v2 Invisible
Invisible variant that runs in the background without user interaction. Same g-recaptcha-response token but with invisible=1 flag.
reCAPTCHA v3
Score-based reCAPTCHA that runs invisibly and returns a score (0.0β1.0). Requires action parameter and optional min_score.
Cloudflare Turnstile
Cloudflare's invisible smart challenge that replaces CAPTCHAs. Runs silently in the background and returns a cf-turnstile-response token.
FriendlyCaptcha
Privacy-first proof-of-work captcha. Returns a frc-captcha-response token. Choose version=2 for the newer browser-agent widget.
MTCaptcha
Privacy-first, GDPR-compliant captcha. Returns a token. Sitekeys start with MTPublic-. Solve time 15β35s.
ALTCHA
Self-hosted proof-of-work captcha (v1 SHA / v2 PBKDF2Β·Argon2Β·Scrypt). No sitekey β provide websiteURL + either challengeURL or challengeJSON (same params as 2captcha).
Cloudflare Challenge
Bypass Cloudflare Bot Management and retrieve the cf_clearance cookie. Provide the URL of the protected page β no sitekey needed. Solve time 5β15s.
Amazon WAF
Solve Amazon Web Services WAF challenges and retrieve the aws-waf-token cookie. Provide the URL of the protected page β no sitekey needed. Solve time 5β15s.
Ready to integrate?
Start solving captchas in minutes. Works with any language β Python, Node.js, PHP, cURL.