cracker-logoCracker

reCAPTCHA v3

Google reCAPTCHA v3 — the score-based variant. Unlike v2, the page never shows a widget; it grades a token returned for a named action against the site's risk model.

reCAPTCHA v3

POSThttps://captcha.solvium.io/v2/tasks/recaptcha-v3

Headers

NameTypeRequiredDefaultExample
x-solvium-authHeaderYesIE0B81Vn...

Body

NameTypeRequiredDefaultExample
urlJSONYeshttps://example.com/signup
site_keyJSONYes6Lc4jRkrAAAAAAr295LcTFPkvbxbMxcBS3gfBRXu
actionJSONYesSIGNUP
is_enterpriseJSONNofalsefalse
proxyJSONNohttp://user:pass@host:8080

Response

Poll Task Status with the returned task_id until it's completed.

Example

Python
from solvium import Solvium
 
solution = Solvium(api_key="YOUR_API_KEY").recaptcha_v3_sync(
    url="https://example.com/signup",
    site_key="6Lc4jRkrAAAAAAr295LcTFPkvbxbMxcBS3gfBRXu",
    action="SIGNUP",
)
print(solution["token"])

© 2026 Solvium. All rights reserved.