EverySolve CAPTCHA API

reCAPTCHA v3 API

EverySolve's reCAPTCHA v3 API returns a token for your challenge workflow. Send POST /api/v1/captcha with type set to recaptcha_v3 and the inputs listed below.

reCAPTCHA v3 is score-based and normally runs through grecaptcha.execute without showing the v2 checkbox. EverySolve returns gRecaptchaResponse, not Google's assessment score. The protected site's backend evaluates the token and action.

Endpoint
POST /api/v1/captcha
Type
recaptcha_v3
Per 1,000 successful solutions
$1.39 per 1,000 successful solutions

Request parameters

Provide website_url and website_key. Optional parameters are page_action, min_score, api_domain, invisible, and enterprise_payload.

Required parameters

website_urlwebsite_key

Optional parameters

page_actionmin_scoreapi_domaininvisibleenterprise_payload
recaptcha_v3.sh
curl -X POST https://api.everyinfra.com/api/v1/captcha \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"type":"recaptcha_v3","website_url":"<website_url>","website_key":"<website_key>"}'

How to recognize reCAPTCHA v3

reCAPTCHA v3 is score-based and normally runs through grecaptcha.execute without showing the v2 checkbox.

What makes reCAPTCHA v3 different

EverySolve returns gRecaptchaResponse, not Google's assessment score. The protected site's backend evaluates the token and action.

Where the reCAPTCHA v3 parameters come from

Copy website_key from the api.js render value and preserve the exact page_action; min_score is a request constraint, not a score guaranteed by the target site.

website_urlRequired
The exact page where this challenge appears, including the relevant path rather than only the site home page.
website_keyRequired
The public site or widget key copied from this exact target integration; it is not a secret key.
page_actionOptional
The action string used by the target reCAPTCHA execution; preserve its exact case and spelling.
min_scoreOptional
The requested reCAPTCHA v3 score threshold; it is a constraint, not a promised score or success rate.
api_domainOptional
The API hostname used by the target widget when it differs from the standard domain.
invisibleOptional
Whether the target widget uses its invisible mode; do not infer it from the absence of an image alone.
enterprise_payloadOptional
Enterprise-specific page data supplied by the target reCAPTCHA integration, when present.

What the API returns

The reCAPTCHA v3 API returns a token in gRecaptchaResponse. Its solution format is token. Submit the token in the field or verification request expected by the target workflow.

Solution shape
token
Solution fields
gRecaptchaResponse

How to use the reCAPTCHA v3 API

  1. 01Read GET /api/v1/captcha/types and select the recaptcha_v3 entry.
  2. 02Send type: "recaptcha_v3" and the required parameters to POST /api/v1/captcha.
  3. 03Read a token from gRecaptchaResponse.
  4. 04Submit the token in the field or verification request expected by the target workflow.

Billing and availability

EverySolve charges only when a solution is delivered successfully. Unsuccessful attempts are refunded automatically. Read available and the price fields from GET /api/v1/captcha/types at request time rather than treating them as static page content.

reCAPTCHA v3 integration questions

How can I identify reCAPTCHA v3 before choosing a type?

reCAPTCHA v3 is score-based and normally runs through grecaptcha.execute without showing the v2 checkbox. Use recaptcha_v3 only after those signals match the target challenge.

Which target-page values belong in a reCAPTCHA v3 request?

Copy website_key from the api.js render value and preserve the exact page_action; min_score is a request constraint, not a score guaranteed by the target site. Provide website_url and website_key. Optional parameters are page_action, min_score, api_domain, invisible, and enterprise_payload.

What does reCAPTCHA v3 return, and what should not be confused with it?

The reCAPTCHA v3 API returns a token in gRecaptchaResponse. Its solution format is token. EverySolve returns gRecaptchaResponse, not Google's assessment score. The protected site's backend evaluates the token and action.

Which external source explains the reCAPTCHA v3 integration?

Google documents v3 execution, action names, tokens, and score-based assessment. [Open the reCAPTCHA v3 reference](https://developers.google.com/recaptcha/docs/v3). EverySolve-specific fields and live availability still come from the type catalog.