How to request scores from reCAPTCHA v3
Learn how to request and read reCAPTCHA v3 scores. Includes full examples for creating tasks, polling results, and interpreting the score field.
How to check your reCAPTCHA score
Google reCAPTCHA v3 works silently. It doesn’t show a challenge — it just monitors user behavior and assigns a score between 0.1
and 1.0
. The lower the score, the more suspicious your session looks.
If you want to test your browser setup or understand how reCAPTCHA sees you — you can check your score without writing any code.
Where to check
Go to this page: Google reCAPTCHA v3.
You’ll see a result like this:
Score: 0.7
The score is what matters.
You can refresh the page and try again in different browsers or with/without automation tools to compare how your score changes.
Score meaning
Score range | Interpretation | How websites may react |
---|---|---|
0.9 – 1.0 |
Very likely human | Allow full access |
0.7 – 0.8 |
Probably human | Allow, maybe log extra info |
0.4 – 0.6 |
Uncertain | May show captcha or delay form |
0.1 – 0.3 |
Likely a bot | Block, require captcha, or reject |
0.0 |
Definitely suspicious | Immediate denial or redirect |
Why it matters
Sites using reCAPTCHA v3 decide whether to block you based on this score. A 0.9
means “this looks like a real user”. A 0.1
might get you blocked or redirected to a captcha page.
This method is useful for:
- Testing new browser setups
- Detecting if your scraper looks too “bot-like”
- Understanding how reCAPTCHA behaves without triggering challenges
You don’t need to solve anything — just observe.