Ender Docs

reCaptcha v3 Solver

Solve Google reCaptcha v3 challenges with score-based validation.

Overview

reCaptcha v3 returns a score (0.0 - 1.0) indicating how likely the interaction is from a human. Our solver generates tokens with high scores.

Endpoint

POST /v1/solvers/recaptcha_v3

Request

Body Parameters

ParameterTypeRequiredDescription
sitekeystringreCaptcha v3 site key
urlstringFull URL of the page
page_actionstringAction parameter (e.g., "submit", "login")

Example Request

curl -X POST https://api.ender.black/v1/solvers/recaptcha_v3 \
  -H "Authorization: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "sitekey": "6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_mJ-",
    "url": "https://example.com/page",
    "page_action": "submit"
  }'

Response

{
  "success": true,
  "data": {
    "token": "03AGdBq24PBCbwiDRaS_MJ7Z..."
  }
}

Finding the Action

The action parameter can be found where reCaptcha is executed:

grecaptcha.execute("sitekey", { action: "submit" });

If you don't know the action, you can omit it or use a common one like "submit" or "homepage".

Credit Cost

ResultCredits
Success1
Error0

On this page