Recaptcha V3

Solver API Documentation

Introduction

The Solver API provides a solution to Google ReCaptcha challenges, supporting both ReCaptchaV3TaskProxyless and ReCaptchaV3EnterpriseTaskProxyless. By sending a request with your client key and the necessary parameters, you will receive a token to bypass the CAPTCHA.

Base URL:

  • Host: https://asskicker.xyz/SolveCaptcha

  • Content-Type: application/json

  • Minimum Timeout: 30 seconds


API Endpoint

POST https://asskicker.xyz/SolveCaptcha

  • Description: This endpoint solves ReCaptcha V3 challenges by accepting a POST request with the necessary details.

  • Timeout: Ensure the timeout for the request is set to at least 50 seconds to give the API sufficient time to process and solve the CAPTCHA.


Request Parameters

  • Content-Type: application/json

Body Parameters:

Parameter
Type
Required
Description

clientKey

string

true

Your client key to authenticate the request.

type

string

true

The type of task. Supported values: ReCaptchaV3TaskProxyless, ReCaptchaV3EnterpriseTaskProxyless.

websiteURL

string

true

The URL of the website where the ReCaptcha is being served.

websiteKey

string

true

The ReCaptcha site key found on the target website.

isInvisible

boolean

false

Whether the ReCaptcha is invisible. Defaults to true for ReCaptcha V3.

pageAction

string

false

The page action used in ReCaptcha V3 to specify the user action being verified.


Example Request

POST https://asskicker.xyz/SolveCaptcha

Request Body:


Example Response

Success Response:

Error Response:


Response Parameters

Parameter
Type
Description

token

string

The token that can be used to bypass the CAPTCHA.

error

boolean

Indicates whether the request was successful.


Error Handling

If the request fails due to invalid parameters or other errors, the error parameter in the response will be set to true, and the token will be empty.


Code Examples

Node.js Example

Golang Example

C# Example

Python Example


Last updated