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.
textinstructions.
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_v3
textinstructions=only digits
Or as URL: ?module=azcaptcha_v3&textinstructions=...
API V2 (JSON / createTask):
POST /createTask
{
"clientKey": "YOUR_API_KEY",
"task": {
"type": "ImageToTextTask",
"body": "<BASE64_IMAGE>",
"module": "azcaptcha_v3",
"textinstructions": "only digits"
}
}
Use module to select solver. textinstructions passes extra hints. Legacy: textinstructions=azcaptcha_v3 still works for backward compatibility.
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.
Ready to integrate?
Start solving captchas in minutes. Works with any language โ Python, Node.js, PHP, cURL.