Reference

CAPTCHA Type Identification Guide

Before solving a CAPTCHA, you need to know what type it is. Using the wrong CaptchaAI method wastes time and credits. This reference covers every major CAPTCHA type — how to identify it visually, what HTML markers to look for, and which CaptchaAI method to use.


Quick identification table

What you see CAPTCHA type CaptchaAI method
"I'm not a robot" checkbox reCAPTCHA v2 userrecaptcha
Checkbox + "Enterprise" badge reCAPTCHA v2 Enterprise userrecaptcha + enterprise=1
No visible widget (score-based) reCAPTCHA v3 userrecaptcha + version=v3
Image grid (3×3 or 4×4) from reCAPTCHA reCAPTCHA v2 image challenge userrecaptcha (or post for grid)
Cloudflare "Verify you are human" widget Cloudflare Turnstile turnstile
Full-page "Checking your browser" Cloudflare Challenge cloudflare_challenge
Slider puzzle GeeTest v3 geetest
Distorted text/characters image Image/OCR CAPTCHA base64 or post
Grid of separate images with instruction BLS / Grid Image post + grid_size
Math problem image Image/OCR CAPTCHA base64

reCAPTCHA v2

Visual identification:

  • Green checkbox with "I'm not a robot" text
  • Google reCAPTCHA branding (Privacy/Terms links)
  • May trigger image grid challenge after clicking

HTML markers:

<div class="g-recaptcha" data-sitekey="..."></div>
<script src="https://www.google.com/recaptcha/api.js"></script>

CaptchaAI parameters:

{
    "method": "userrecaptcha",
    "googlekey": "SITEKEY_FROM_DATA_ATTRIBUTE",
    "pageurl": "https://example.com/page"
}

reCAPTCHA v2 Enterprise

Visual identification:

  • Same as reCAPTCHA v2 but with Enterprise badge
  • Often on corporate or high-security sites

HTML markers:

<script src="https://www.google.com/recaptcha/enterprise.js"></script>
<!-- OR -->
<script src="https://www.google.com/recaptcha/enterprise.js?render=SITEKEY"></script>

CaptchaAI parameters:

{
    "method": "userrecaptcha",
    "googlekey": "SITEKEY",
    "pageurl": "https://example.com",
    "enterprise": 1
}

reCAPTCHA v2 Invisible

Visual identification:

  • No visible widget — triggered on form submit or button click
  • reCAPTCHA badge in bottom-right corner (may be hidden via CSS)

HTML markers:

<div class="g-recaptcha" data-sitekey="..." data-size="invisible"></div>
<!-- OR -->
<button data-sitekey="..." data-callback="onSubmit" class="g-recaptcha">Submit</button>

CaptchaAI parameters:

{
    "method": "userrecaptcha",
    "googlekey": "SITEKEY",
    "pageurl": "https://example.com",
    "invisible": 1
}

reCAPTCHA v3

Visual identification:

  • No visible widget at all
  • May show reCAPTCHA badge in corner (often hidden)
  • Score-based — runs silently in background

HTML markers:

<script src="https://www.google.com/recaptcha/api.js?render=SITEKEY"></script>

Look for render=SITEKEY in the script URL (not render=explicit).

CaptchaAI parameters:

{
    "method": "userrecaptcha",
    "googlekey": "SITEKEY",
    "pageurl": "https://example.com",
    "version": "v3",
    "action": "login"  # Match the site's action
}

Cloudflare Turnstile

Visual identification:

  • Cloudflare-branded widget ("Verify you are human")
  • Small, embedded within forms
  • Similar to reCAPTCHA checkbox but Cloudflare-styled

HTML markers:

<div class="cf-turnstile" data-sitekey="0x4AAAAAAAA..."></div>
<script src="https://challenges.cloudflare.com/turnstile/v0/api.js"></script>

CaptchaAI parameters:

{
    "method": "turnstile",
    "sitekey": "0x4AAAAAAAA...",
    "pageurl": "https://example.com"
}

Cloudflare Challenge

Visual identification:

  • Full-page interstitial — blocks all content
  • "Checking your browser before accessing..." message
  • Cloudflare loading spinner
  • Page title: "Just a moment..."

HTML markers (in the challenge page):

<title>Just a moment...</title>
<div id="challenge-running">...</div>

CaptchaAI parameters:

{
    "method": "cloudflare_challenge",
    "pageurl": "https://example.com",
    "proxy": "host:port:user:pass",      # Mandatory
    "proxytype": "HTTP",                  # Mandatory
    "userAgent": "Mozilla/5.0 ..."        # Mandatory
}

GeeTest v3

Visual identification:

  • Slider puzzle — drag a puzzle piece into position
  • GeeTest branding
  • May show icon-click or 3D challenges

HTML markers:

<script src="https://static.geetest.com/static/tools/gt.js"></script>
<!-- JavaScript calls initGeetest() -->

CaptchaAI parameters:

{
    "method": "geetest",
    "gt": "GT_VALUE",           # From page JavaScript or API
    "challenge": "CHALLENGE",   # Dynamic per load
    "pageurl": "https://example.com"
}

Image/OCR CAPTCHA

Visual identification:

  • An image showing distorted text, numbers, or a math problem
  • Text input field below the image
  • No third-party branding (custom implementation)

HTML markers:

<img src="/captcha.php" id="captcha-image" />
<input type="text" name="captcha" />

CaptchaAI parameters:

# Base64 method
{
    "method": "base64",
    "body": "BASE64_ENCODED_IMAGE"
}

# File upload method
files = {"file": open("captcha.png", "rb")}
data = {"key": "YOUR_API_KEY", "method": "post"}

Programmatic detection script

import requests

def identify_captcha(url):
    """Identify CAPTCHA type on a URL."""
    resp = requests.get(url, allow_redirects=True)
    html = resp.text

    # Cloudflare Challenge (check first — blocks content)
    if resp.status_code in [403, 503]:
        if "Just a moment" in html or "challenge-platform" in html:
            return "cloudflare_challenge"

    # reCAPTCHA Enterprise
    if "recaptcha/enterprise.js" in html:
        if "render=" in html:
            return "recaptcha_v3_enterprise"
        return "recaptcha_v2_enterprise"

    # reCAPTCHA v3
    if "recaptcha/api.js?render=" in html and 'render=explicit' not in html:
        return "recaptcha_v3"

    # reCAPTCHA v2
    if "g-recaptcha" in html or "recaptcha/api.js" in html:
        if 'data-size="invisible"' in html:
            return "recaptcha_v2_invisible"
        return "recaptcha_v2"

    # Cloudflare Turnstile
    if "cf-turnstile" in html or "challenges.cloudflare.com/turnstile" in html:
        return "turnstile"

    # GeeTest
    if "geetest" in html.lower() or "gt.js" in html:
        return "geetest"

    # Generic image CAPTCHA
    if "captcha" in html.lower():
        return "image_ocr"

    return "none_detected"

result = identify_captcha("https://example.com")
print(f"CAPTCHA type: {result}")

FAQ

What if I cannot identify the CAPTCHA type?

Inspect the page source for script URLs, div class names, and data attributes. Search for keywords: recaptcha, turnstile, geetest, captcha. If none match, it is likely a custom image CAPTCHA — try the base64 method.

Can a page have multiple CAPTCHA types?

Yes. A site might use Cloudflare Challenge on initial access and Turnstile on the login form. Detect and solve each separately.

How do I tell reCAPTCHA v2 from v3?

v2 has a visible checkbox or image grid. v3 has no visible widget — it loads via api.js?render=SITEKEY. Check the script tag.


Solve any CAPTCHA type at CaptchaAI

Identify and solve CAPTCHAs at captchaai.com.


Discussions (0)

No comments yet.

Related Posts

DevOps & Scaling Ansible Playbooks for CaptchaAI Worker Deployment
Deploy and manage Captcha AI workers with Ansible — playbooks for provisioning, configuration, rolling updates, and health checks across your server fleet.

Deploy and manage Captcha AI workers with Ansible — playbooks for provisioning, configuration, rolling updates...

Automation Python All CAPTCHA Types
Apr 07, 2026
DevOps & Scaling Blue-Green Deployment for CAPTCHA Solving Infrastructure
Implement blue-green deployments for CAPTCHA solving infrastructure — zero-downtime upgrades, traffic switching, and rollback strategies with Captcha AI.

Implement blue-green deployments for CAPTCHA solving infrastructure — zero-downtime upgrades, traffic switchin...

Automation Python All CAPTCHA Types
Apr 07, 2026
Troubleshooting CaptchaAI API Error Handling: Complete Decision Tree
Complete decision tree for every Captcha AI API error.

Complete decision tree for every Captcha AI API error. Learn which errors are retryable, which need parameter...

Automation Python All CAPTCHA Types
Mar 17, 2026
Tutorials Using Fiddler to Inspect CaptchaAI API Traffic
How to use Fiddler Everywhere and Fiddler Classic to capture, inspect, and debug Captcha AI API requests and responses — filters, breakpoints, and replay for tr...

How to use Fiddler Everywhere and Fiddler Classic to capture, inspect, and debug Captcha AI API requests and r...

Automation Python All CAPTCHA Types
Mar 05, 2026
Tutorials CAPTCHA Handling in Mobile Apps with Appium
Handle CAPTCHAs in mobile app automation using Appium and Captcha AI — extract Web sitekeys, solve, and inject tokens on Android and i OS.

Handle CAPTCHAs in mobile app automation using Appium and Captcha AI — extract Web View sitekeys, solve, and i...

Automation Python All CAPTCHA Types
Feb 13, 2026
Tutorials Streaming Batch Results: Processing CAPTCHA Solutions as They Arrive
Process CAPTCHA solutions the moment they arrive instead of waiting for tasks to complete — use async generators, event emitters, and callback patterns for stre...

Process CAPTCHA solutions the moment they arrive instead of waiting for all tasks to complete — use async gene...

Automation Python All CAPTCHA Types
Apr 07, 2026
Reference CaptchaAI CLI Tool: Command-Line CAPTCHA Solving and Testing
A reference for building and using a Captcha AI command-line tool — solve CAPTCHAs, check balance, test parameters, and integrate with shell scripts and CI/CD p...

A reference for building and using a Captcha AI command-line tool — solve CAPTCHAs, check balance, test parame...

Automation Python All CAPTCHA Types
Feb 26, 2026
DevOps & Scaling Auto-Scaling CAPTCHA Solving Workers
Build auto-scaling CAPTCHA solving workers that adjust capacity based on queue depth, balance, and solve rates.

Build auto-scaling CAPTCHA solving workers that adjust capacity based on queue depth, balance, and solve rates...

Automation Python All CAPTCHA Types
Mar 23, 2026
DevOps & Scaling CaptchaAI Monitoring with Datadog: Metrics and Alerts
Monitor Captcha AI performance with Datadog — custom metrics, dashboards, anomaly detection alerts, and solve rate tracking for CAPTCHA solving pipelines.

Monitor Captcha AI performance with Datadog — custom metrics, dashboards, anomaly detection alerts, and solve...

Automation Python All CAPTCHA Types
Feb 19, 2026
Reference CAPTCHA Token Injection Methods Reference
Complete reference for injecting solved CAPTCHA tokens into web pages.

Complete reference for injecting solved CAPTCHA tokens into web pages. Covers re CAPTCHA, Turnstile, and Cloud...

Automation Python reCAPTCHA v2
Apr 08, 2026
Reference API Endpoint Mapping: CaptchaAI vs Competitors
Side-by-side API endpoint comparison between Captcha AI, 2 Captcha, Anti-Captcha, and Cap Monster — endpoints, parameters, and response formats.

Side-by-side API endpoint comparison between Captcha AI, 2 Captcha, Anti-Captcha, and Cap Monster — endpoints,...

All CAPTCHA Types Migration
Feb 05, 2026
Reference Browser Session Persistence for CAPTCHA Workflows
Manage browser sessions, cookies, and storage across CAPTCHA-solving runs to reduce repeat challenges and maintain authenticated state.

Manage browser sessions, cookies, and storage across CAPTCHA-solving runs to reduce repeat challenges and main...

Automation Python reCAPTCHA v2
Feb 24, 2026