Recaptcha V2
Solver API Documentation
Introduction
The Solver API provides a solution to Google ReCaptcha challenges, supporting both ReCaptchaV2TaskProxyless and ReCaptchaV2EnterpriseTaskProxyless. 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
https://asskicker.xyz/SolveCaptcha
Description: This endpoint solves ReCaptcha challenges by accepting a POST request with the necessary details.
Timeout: Ensure the timeout for the request is set to at least 30 seconds to give the API sufficient time to process and solve the CAPTCHA.
Request Parameters
Header:
Content-Type
:application/json
Body Parameters:
clientKey
string
true
Your client key to authenticate the request.
type
string
true
The type of task. Supported values: ReCaptchaV2TaskProxyless
, ReCaptchaV2EnterpriseTaskProxyless
.
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 false
.
pageAction
string
false
Optional. The action used in ReCaptcha challenges for user interaction verification.
Example Request
POST https://asskicker.xyz/SolveCaptcha
https://asskicker.xyz/SolveCaptcha
Request Body:
Example Response
Success Response:
Error Response:
Response Parameters
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