reCAPTCHA v2
Google reCAPTCHA v2 — checkbox or invisible variant, regular or Enterprise.

POSThttps://captcha.solvium.io/v2/tasks/recaptcha-v2
Headers
| Name | Type | Required | Default | Example |
|---|---|---|---|---|
| x-solvium-authSolvium API key — get one from @solvium_crypto_bot. | Header | Yes | — | IE0B81Vn... |
Body
| Name | Type | Required | Default | Example |
|---|---|---|---|---|
| url | JSON | Yes | — | https://example.com/login |
| site_key | JSON | Yes | — | 6Lc4jRkrAAAAAAr295LcTFPkvbxbMxcBS3gfBRXu |
| is_invisibleSet to true for the invisible variant (corner badge, no checkbox). | JSON | No | false | false |
| is_enterpriseSet to true if the site uses reCAPTCHA Enterprise. | JSON | No | false | false |
| data_sOptional data-s attribute used by some Google-owned sites (Search, YouTube). | JSON | No | — | … |
| proxy | JSON | No | — | http://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_v2_sync(
url="https://example.com/login",
site_key="6Lc4jRkrAAAAAAr295LcTFPkvbxbMxcBS3gfBRXu",
is_enterprise=True,
)
print(solution["token"])