reCAPTCHA v2 Invisible

Solve Google reCAPTCHA v2 Invisible — no checkbox, triggered programmatically

Price: $0.50 / 1k solves · Speed: ~1s

reCAPTCHA v2 Invisible fires without user interaction. It's triggered by a button click or JS call and returns a token if the user passes the risk analysis.

Finding the site key

Look in the page HTML for:

<div class="g-recaptcha" data-sitekey="6LdyC2cU..." data-size="invisible">

Or in JS:

grecaptcha.render('container', { sitekey: '6LdyC2cU...', size: 'invisible' })

Request

{
  "type": "RecaptchaV2InvisibleProxyless",
  "site_key": "6LdyC2cUAAAA...",
  "site_url": "https://example.com"
}

Response

{
  "success": true,
  "token": "03AGdBq24...",
  "took_ms": 950,
  "cost": 0.0008
}

Submit the token as g-recaptcha-response in the form POST.

cURL example

curl -s -X POST https://api.solver.lol/solve \
  -H "X-API-Key: sk_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "RecaptchaV2InvisibleProxyless",
    "site_key": "6LdyC2cUAAAA...",
    "site_url": "https://example.com"
  }'

Parameters

FieldRequiredDescription
typeRecaptchaV2InvisibleProxyless
site_keyThe public site key
site_urlFull URL of the page
proxyhttp://user:pass@host:port