ReCaptchaV2EnterpriseTokenProxyLess
Solve reCAPTCHA V2 Enterprise challenges without providing your own proxy.
ReCaptchaV2EnterpriseTokenProxyLess is the proxyless variant of the reCAPTCHA V2 Enterprise task. The solving provider uses its own proxies to complete the challenge.
Use this variant when you don't need IP matching or when your own proxies are not suitable for the task.
For detailed setup instructions, enterprise payload extraction, and parameter guides, see ReCaptchaV2EnterpriseToken.
Supported Providers
| Provider | Price per 1,000 |
|---|---|
| $1.00 | |
| $1.00 - $2.99 | |
| $5.00 | |
| $1.00 - $4.00 | |
| $0.13 | |
| $1.20 | |
| $0.55 |
Request Schema
| Field | Type | Description |
|---|---|---|
clientKey* | string | Your API key from the AnySolver dashboard. Example: |
task* | object | |
provider | Specific provider to use. If omitted, automatic routing selects the best provider. Example: | |
selectionMode | Read more at the routing strategies docs. Example: | |
keyPoolMode | Example: |
Task Object Properties
The task field accepts an object with the following properties:
| Field | Type | Description |
|---|---|---|
websiteURL* | URL | Full URL of the page where the CAPTCHA is displayed. Example: |
websiteKey* | string | The site key (data-sitekey attribute) found in the CAPTCHA HTML element. Example: |
pageTitle* | string | Title of the target page (document.title). Some providers use it as an additional hint when solving token-based reCAPTCHA tasks. Example: |
isInvisible | boolean | Set to true when the widget is invisible, for example when the iframe URL contains size=invisible or the challenge starts after a button click without showing a checkbox first. Example: |
userAgent | string | Browser User-Agent string. Must match the browser used on the target page. Not all providers properly support this parameter. Verify the compatibility with the provider you are using. Example: |
cookies | string | Cookies from the target page session, if required for solving. Example: |
pageAction | string | Action passed to grecaptcha.execute() or grecaptcha.enterprise.execute(), such as verify or submit. This is mainly relevant on enterprise flows and should match the page JavaScript exactly. Example: |
apiDomain | string | Domain used to load reCAPTCHA. Use google.com for standard widgets or recaptcha.net when the page loads the API from recaptcha.net or www.recaptcha.net. Example: |
isSession | boolean | Enable session mode to receive worker session cookies together with the token. Only supported by providers that expose session-cookie responses. Example: |
recaptchaDataSValue | string | Value of the data-s parameter used on some Google-owned pages and other protected flows. It is short-lived and should be extracted fresh for every solve attempt. Example: |
enterprisePayload | Record<string, unknown> | Additional values passed to grecaptcha.enterprise.render() or related page code. This usually contains enterprise-only fields such as the s token. Example: |
Example Request
{ "clientKey": "your-api-key-from-dashboard", "task": { "websiteURL": "https://www.google.com/recaptcha/api2/demo", "websiteKey": "6Le-wvkSAAAAAPBMRTvw0Q4Muexq9bi0DJwx_mJ-", "pageTitle": "reCAPTCHA demo", "type": "ReCaptchaV2EnterpriseTokenProxyLess" }}Response Schema
| Field | Type | Description |
|---|---|---|
status* | Task status: "processing", "ready", or "failed". Example: | |
taskId | string | Unique identifier returned when the task was created. Example: |
errorId* | 0 = success, 1 = external error, 2 = internal error. Example: | |
errorCode | Machine-readable error code (e.g., "CAPTCHA_UNSOLVABLE"). Example: | |
errorDescription | string | Human-readable error message with resolution hints. Example: |
cost | number | Actual cost charged for this task in USD. Example: |
taskType | The type of CAPTCHA task to solve. Example: | |
provider | Specific provider to use. If omitted, automatic routing selects the best provider. Example: | |
solution | object |
Solution Object Properties
The solution field contains an object with the following properties:
| Field | Type | Description |
|---|---|---|
token* | string | The solved CAPTCHA token to submit with your form. Example: |
userAgent | string | User-Agent string used during solving (if applicable). |
cookies | Record<string, unknown> | Session cookies obtained during solving (if applicable). |
raw* | Record<string, unknown> | Raw provider response data for advanced use cases. |