ProductsIntegrationsResourcesDocumentationPricing
Start Now

© 2026 CapSolver. All rights reserved.

CONTACT US

Slack: lola@capsolver.com

Products

  • reCAPTCHA v2
  • reCAPTCHA v3
  • Cloudflare Turnstile
  • Cloudflare Challenge
  • AWS WAF
  • Browser Extension
  • Many more CAPTCHA types

Integrations

  • Selenium
  • Playwright
  • Puppeteer
  • n8n
  • Partners
  • View All Integrations

Resources

  • Referral System
  • Documentation
  • API Reference
  • Blog
  • FAQs
  • Glossary
  • Status

Legal

  • Terms & Conditions
  • Privacy Policy
  • Refund Policy
  • Don't Sell My Info
//How to solve reCaptcha v2 Invisible
Jun15, 2023

How to solve reCaptcha v2 Invisible

Sora Fujimoto

Sora Fujimoto

AI Solutions Architect

recaptcha v2 invisible solver

How to Solve reCaptcha v2 Invisible

To solve reCaptcha v2 invisible, you need to follow the same steps as for reCaptcha v2, but with the addition of a new parameter called "isInvisible" set to true. Here's how to do it:

Step 1: Submitting the Information to Capsolver

First, you need to submit all the necessary information to Capsolver using the createTask method. Here's an example of how to do it:

json Copy
POST https://api.capsolver.com/createTask
{
 "clientKey": "YOUR_API_KEY",
 "task": {
 "type": "ReCaptchaV2TaskProxyless",
 "websiteURL": "https://site.com",
 "websiteKey": "sitekey",
 "isInvisible": true
 }
}

Step 2: Getting the Results

To verify the results, you'll need to continuously poll the getTaskResult API endpoint until the captcha is resolved. Here's an example request:

json Copy
POST https://api.capsolver.com/getTaskResult
{
 "clientKey":"YOUR_API_KEY",
 "taskId": "TASKID_OF_CREATETASK"
}

Once the captcha is successfully resolved, you'll receive a response similar to the one depicted below:

json Copy
{
 "errorId": 0,
 "errorCode": null,
 "errorDescription": null,
 "solution": {
 "userAgent": "xxx",
 "expireTime": 1671615324290,
 "gRecaptchaResponse": "3AHJ....."
 },
 "status": "ready"
}

The captcha token received can be verified by submitting it to the relevant site.

More

Contents

reCAPTCHAApr 16, 2026

reCAPTCHA Score Explained: Range, Meaning, and How to Improve It

Understand reCAPTCHA v3 score range (0.0 to 1.0), its meaning, and how to improve your score. Learn how to handle low scores and optimize user experience.

Rajinder Singh
Rajinder Singh
reCAPTCHAApr 16, 2026

reCAPTCHA Invalid Site Key or Token? Causes & Fix Guide

Facing "reCAPTCHA Invalid Site Key" or "invalid reCAPTCHA token" errors? Discover common causes, step-by-step fixes, and troubleshooting tips to resolve reCAPTCHA verification failed issues. Learn how to fix reCAPTCHA verification failed please try again.

Aloísio Vítor
Aloísio Vítor
reCAPTCHAApr 15, 2026

reCAPTCHA Verification Failed? How to Fix "Please Try Again" Errors

Fix reCAPTCHA verification failed errors fast. Step-by-step manual fixes for users and a Python API guide for developers using CapSolver. Covers v2, v3, and Enterprise.

Adélia Cruz
Adélia Cruz
reCAPTCHAApr 15, 2026

reCAPTCHA v2 vs v3: Key Differences Every Developer Should Know

Understand the difference between reCAPTCHA v2 and v3 — how each works, when to use them, and how automated workflows handle both. A clear, technical comparison for developers.

Nikolai Smirnov
Nikolai Smirnov
Blog
reCAPTCHA