reCAPTCHA v3 demo

Click Submit to send the token to /api/verify/recaptcha_v3 (GET). The verify response includes the v3 score (0.0–1.0) so you can tell whether Google judged the request human-like.

Why no widget?
reCAPTCHA v3 is invisible — it scores requests in the background instead of showing a checkbox. The Google JS SDK loads on this page (you can see the badge bottom-right), and on a real site you'd call grecaptcha.execute(SITEKEY, {action: 'submit'}) on form submit. Our orchestrator instead provides a CapSolver-supplied token via the hidden textarea; clicking Submit posts that token to /api/verify/recaptcha_v3.

← back to demos