Live Demo

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.

Don't have a key? Create a free account โ€” includes $0.1 free credit.

How it works

Three steps to verify AZcaptcha solves your captchas

Step 1
Enter API Key

Paste your AZcaptcha API key in the field above. It's saved locally so you only need to enter it once.

Step 2
Click Solve

Hit the "Solve with AZcaptcha" button under any captcha widget. The task is submitted to our solving network instantly.

Step 3
Get Result

Receive the solved token in seconds. Copy it with one click and use it in your application or automation script.

Image OCR

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.

Captcha image
Click the image or reload button to get a fresh captcha
Leave empty for default solver. Pick a public module or type your own trained module name.
Extra instructions for the solver (e.g. character hints). Passed as 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.
Upload your own captcha image
Drop image here or click to browse
Pick a public module or type your own trained module name.
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.

Drop grid screenshot or click to browse
Token-based

Challenge Captchas

These captchas return a cryptographic token you submit with the form. Our workers solve them automatically.

reCAPTCHA
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
reCAPTCHA v2 Invisible

Invisible variant that runs in the background without user interaction. Same g-recaptcha-response token but with invisible=1 flag.

Invisible โ€” no widget shown
reCAPTCHA
reCAPTCHA v3

Score-based reCAPTCHA that runs invisibly and returns a score (0.0โ€“1.0). Requires action parameter and optional min_score.

Score-based โ€” returns 0.0 to 1.0
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.