← Glossary
Invisible CAPTCHA
A CAPTCHA that scores the request without ever showing a challenge to the user.
Invisible CAPTCHA means no checkbox to click, no puzzle to solve, and no images to identify. The verification happens entirely in the background. Three implementation patterns dominate: behavioral analysis (reCAPTCHA v3 scoring mouse movements, time on page, and cross-site behavioral signals), network reputation (Cloudflare Turnstile checking IP, TLS fingerprint, and CDN-side traffic patterns), and proof-of-work (Friendly Captcha and ALTCHA running a hash puzzle).
The user experience is significantly better than visible CAPTCHAs: form submissions feel instant, accessibility issues disappear, and mobile users don't fight tiny crosswalk images. The cost in 2026 has dropped to free for most providers (Turnstile, ALTCHA self-hosted) or low-cost subscription (Friendly Captcha at €9/mo, reCAPTCHA v3 free up to 1M).
The trade-off vs visible CAPTCHA: invisible challenges depend on accurate scoring of the request, which means false positives can hit legitimate users without warning. A user with an unusual IP reputation, an outdated browser, or unusual mouse patterns can be silently blocked. Visible CAPTCHAs at least give a failed user a clear "I am human" path. Most invisible providers handle this by escalating suspicious requests to a hard visible challenge as fallback.