EverySolve CAPTCHA API

reCAPTCHA v3 Enterprise API

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

reCAPTCHA v3 Enterprise uses an Enterprise score-based key with enterprise.js and grecaptcha.enterprise.execute. It returns gRecaptchaResponse for Enterprise assessment. It has no v2 checkbox contract and is not classic v3 api.js merely because both are invisible.

Endpoint
POST /api/v1/captcha
Type
recaptcha_v3_enterprise
Per 1,000 successful solutions
$3.06 per 1,000 successful solutions

Request parameters

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

Required parameters

website_urlwebsite_key

Optional parameters

page_actionenterprise_payloadapi_domain
recaptcha_v3_enterprise.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_enterprise","website_url":"<website_url>","website_key":"<website_key>"}'

How to recognize reCAPTCHA v3 Enterprise

reCAPTCHA v3 Enterprise uses an Enterprise score-based key with enterprise.js and grecaptcha.enterprise.execute.

What makes reCAPTCHA v3 Enterprise different

It returns gRecaptchaResponse for Enterprise assessment. It has no v2 checkbox contract and is not classic v3 api.js merely because both are invisible.

Where the reCAPTCHA v3 Enterprise parameters come from

Copy the Enterprise key and action from the target call; enterprise_payload and api_domain apply only when that integration exposes them.

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.
enterprise_payloadOptional
Enterprise-specific page data supplied by the target reCAPTCHA integration, when present.
api_domainOptional
The API hostname used by the target widget when it differs from the standard domain.

What the API returns

The reCAPTCHA v3 Enterprise 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 Enterprise API

  1. 01Read GET /api/v1/captcha/types and select the recaptcha_v3_enterprise entry.
  2. 02Send type: "recaptcha_v3_enterprise" 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 Enterprise integration questions

How can I identify reCAPTCHA v3 Enterprise before choosing a type?

reCAPTCHA v3 Enterprise uses an Enterprise score-based key with enterprise.js and grecaptcha.enterprise.execute. Use recaptcha_v3_enterprise only after those signals match the target challenge.

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

Copy the Enterprise key and action from the target call; enterprise_payload and api_domain apply only when that integration exposes them. Provide website_url and website_key. Optional parameters are page_action, enterprise_payload, and api_domain.

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

The reCAPTCHA v3 Enterprise API returns a token in gRecaptchaResponse. Its solution format is token. It returns gRecaptchaResponse for Enterprise assessment. It has no v2 checkbox contract and is not classic v3 api.js merely because both are invisible.

Which external source explains the reCAPTCHA v3 Enterprise integration?

Google Cloud documents score-based Enterprise keys, actions, and token assessment. [Open the reCAPTCHA v3 Enterprise reference](https://docs.cloud.google.com/recaptcha/docs/instrument-web-pages). EverySolve-specific fields and live availability still come from the type catalog.