How to check your reCAPTCHA v3 score without writing code
If you're doing any kind of scraping, automation, or testing — you've probably run into reCAPTCHA v3. It doesn't show a challenge. It just runs silently and assigns your session a score from 0.1 (bot) to 1.0 (human). Websites then use that score to decide whether to block you or let you through.
I always assumed you had to fake tokens or mess with API calls to check it.
Turns out, you can just go to webpage:
You can refresh the page and see how your score changes with:
- Headless vs. full browser
 - Proxies or VPN
 - Different headers or user agents
 - Mouse movement enabled vs. not
 
Really helpful if you want to know how “suspicious” your scraper looks before the target site shuts you down.
Here’s a rough breakdown of what the score means:
| Score | Meaning | What websites might do | 
|---|---|---|
| 0.9+ | Definitely human | Full access | 
| 0.7–0.8 | Probably human | Access with logging | 
| 0.4–0.6 | Unclear | Challenge or rate-limit | 
| 0.1–0.3 | Probably bot | Block, redirect, CAPTCHA | 
No code needed. Just open the page and see how Google sees you.