reCAPTCHA v3 Enterprise is a service developed by Google designed to protect websites from spam and abuse while providing a better user experience compared to previous versions of reCAPTCHA. Unlike its predecessors, reCAPTCHA v3 does not require users to solve challenges (like identifying traffic lights or typing text from images). Instead, it operates invisibly in the background to analyze user interactions and determine if they are human or potentially malicious bots
Token-based automatic solving method for reCAPTCHA v3 Enterprise.
Bypass reCAPTCHA v3 Enterprise with fastest and highly maintained, up-to-date and cheapest captcha solving service NextCaptcha. and only pay for successful requests.
Use NextCaptcha reCAPTCHA v3 Enterprise solver for automatic bypass.
1. Immediate Token return mode
https://api-v2.nextcaptcha.com/getToken
POST
application/json
{
"clientKey": "api key",
"task": {
"type": "RecaptchaV3TaskProxyless",
"websiteURL": "https://google.com",
"websiteKey": "6LfD3PIbAAAAAJs_eEHvoOl75_83eXSqpPSRFJ_u",
"pageAction": "login"
}
}
0|03AFcWeA4rpfEqUc6xCJsyhBoLLCwAzllnDfcqB2rx5iXBVW0To3SLFrPaNPR4nUT1NtlLqeGFoh8fy01fpMjyTrrWdjjFORb4CNoJxjUKBADdlHGuD64tCL3FVrjiuFpH8oiUHuPspowBdIY_5i1LNgqSmyOmdSLIAdH4LVRFvy4jcyvTwwmjK7HZiS57U-HFrpZ7unuBGoDWOofmk3nu_cYbifcMnE4Rf0QrgtKAmZMiAYsWtJ-mMu2NH0LIdD3agH6LqD2DftNXSJEO9DJ_ihhpwgaRSaNcM366_VBYM3QuiC11_mkQ4DqOPGCNIrWvWePm5kN-aqRUNl0qQ3Vr9Oc1ii6eCjB4yPNjxSOwlR-GvIAqMlWNWY_UvhJJfterBLjthVK4d9caTR__vU_RPkyccBegSJRNZEowQDWeMbjEt-_em_daKo7uCa7fPQMtodE5NysmgAl7pYMAtjusTGylVZ4iEFI03J9IFIMTvkDm5jOWKmfTJ1uUrqT0906zmDTnnp9CsL7iOwRWeziDDDidroRBxcEabsAp7lps7PmvwUHw6WDxFC0GQoCupKmiYYBsRwuZdn3Vkn92aqkq8YlJSZOaCLseu1GpnYRhporDYbVnJnWNfEHzvYYEsjHEMSjZQlGiyInlZ50t2-wi-Me1GZKlY67ARROHNepdBlVg_zLQUniBHGSWRJt6ttEnCBsYAxvTaOsSzehY2vHaQKfR8uLPxC8GfQ
https://api.nextcaptcha.com/createTask
POST
application/json
{
"clientKey": "api key",
"task": {
"type": "RecaptchaV3TaskProxyless",
"websiteURL": "https://google.com",
"websiteKey": "6LfD3PIbAAAAAJs_eEHvoOl75_83eXSqpPSRFJ_u",
"pageAction": "login"
}
}
{
"clientKey": "api key",
"taskId": 1781234567890
}
https://api.nextcaptcha.com/createTask
POST
application/json
{
"clientKey": "api key",
"task": {
"type": "RecaptchaV3TaskProxyless",
"websiteURL": "https://google.com",
"websiteKey": "6LfD3PIbAAAAAJs_eEHvoOl75_83eXSqpPSRFJ_u",
"pageAction": "login"
},
"callbackUrl": "process the captcha solution results url"
}
# https://github.com/nextcaptcha/nextcaptcha-python
import os
import sys
from nextcaptcha import NextCaptchaAPI
client_key = os.getenv('NEXTCAPTCHA_KEY', "YOUR_CLIENT_KEY")
api = NextCaptchaAPI(client_key=client_key)
try:
result = api.recaptchav3(website_url="https://example.com", website_key="SITE_KEY")
except Exception as e:
sys.exit(e)
else:
sys.exit('solved: ' + str(result))
// https://github.com/nextcaptcha/nextcaptcha-go
package main
import (
"fmt"
"log"
"github.com/nextcaptcha/nextcaptcha-go"
)
func main() {
api := nextcaptcha.NewNextCaptchaAPI("API_KEY")
result, err := api.RecaptchaV3("https://example.com", "SITE_KEY", nextcaptcha.RecaptchaV3Options{})
if err != nil {
log.Fatal(err);
}
fmt.Println("result "+result)
}
// https://github.com/nextcaptcha/nextcaptcha-csharp
string clientKey = "YOUR_CLIENT_KEY";
string solftId = ""; // Optional
string callbackUrl = ""; // Optional
bool openLog = true; // Optional
var nextCaptchaAPI = new NextCaptchaAPI(clientKey, solftId, callbackUrl, openLog);
string websiteUrl = "https://example.com";
string websiteKey = "YOUR_WEBSITE_KEY";
string pageAction = ""; // Optional
string apiDomain = ""; // Optional
var result = await nextCaptchaAPI.SolveRecaptchaV3Async(websiteUrl, websiteKey, pageAction, apiDomain);
In developer console, find textarea with id="g-recaptcha-response", and put there received code. Then, click the Check button.