Join And Get Free Trial!

ReCaptchaV3HSTaskProxyLess#


Token-based automatic solving method for reCAPTCHA V3.
The ReCaptchaV3HSTaskProxyLess API generates high-score reCAPTCHA v3 tokens without needing proxies, improving bypass rates with advanced token generation optimized for websites requiring high-trust scores.

ReCaptchaV3HSTaskProxyLess Task object structure#

nametypeRequiredDescription
typeStringYesReCaptchaV3HSTaskProxyLess
websiteURLStringYesComplete URL of the target page for loading the Captcha
websiteKeyStringYesreCAPTCHA website key. This can be found in the data-sitekey attribute of the reCAPTCHA div element or in the k parameter of a request to the reCAPTHCHA API.
pageActionStringNoFor additional parameters, you can search grecaptcha.execute to find the action parameters
apiDomainStringNoDomain name used to load Captcha: google.com or recaptcha.net. Default: google.com
titleStringNothe recaptcha trigger page title (press f12 to open the console, then enter document.title)
websiteInfoStringNoDetailed information about a target website the tutorial guides how to get this data, and optimizing your approach to boost reCAPTCHA token scores

Request example#

API endpoint: https://api.nextcaptcha.com/createTask

method: POST

Content type: application/json

{
    "clientKey":"api key",
    "task": {
        "type":"ReCaptchaV3HSTaskProxyLess",
        "websiteURL":"https://google.com",
        "websiteKey":"6LfD3PIbAAAAAJs_eEHvoOl75_83eXSqpPSRFJ_u",
        "pageAction":"login"
    }
}

Response example#

{
  "errorId": 0,
  "status": "ready",
  "solution": {
    "gRecaptchaResponse": "03AGdBq26gJ8v3Z3J9z3..."
  },
  "createTime": 1701234567890,
  "endTime": 1701234567890
}

Related Links#