For the complete documentation index, see llms.txt. This page is also available as Markdown.

v3 Bypass Solution

The GeeTest v3 solver endpoint takes the captcha's gt and challenge parameters and returns the validation payload, so you never render or solve the widget yourself.

How the solution works

To bypass a GeeTest v3 captcha:

  1. Parse the gt and challenge parameters (found in the page's HTML or from a specific endpoint).

  2. Send the gt and challenge to our API, and retrieve the response.

Endpoint

GET https://geetest.takionapi.tech/v3

Parameters:

  • gt (required): The captcha's gt parameter.

  • challenge (required): The captcha's challenge parameter.

  • proxy (optional): Proxy for solving (format: ip:port or ip:port:mail:password).

Example Response

{
  "response": {
    "geetest_challenge": "567fc6015320e44041dad5e517c73499",
    "geetest_validate": "ee08eee1cd458f705174a7638b74845b",
    "geetest_seccode": "ee08eee1cd458f705174a7638b74845b|jordan"
  }
}

In order to access any of our endpoint you'll need a valid API Key, either join our discord for a trial or puchase a plan

Solve GeeTest v3

post

Solves a GeeTest v3 slide/click captcha from its gt and challenge values and returns the validated solution (geetest_challenge, geetest_validate, geetest_seccode). GET with query params also works.

Authorizations
x-api-keystringRequired
Body

Provide gt and challenge (at least one is required).

gtstringOptional

The GeeTest gt value from the target.

challengestringOptional

The GeeTest challenge value from the target.

proxystringOptional

Proxy in ip:port or ip:port:user:pass format (optional).

Example: 1.2.3.4:8000:user:pass
Other propertiesanyOptional
Responses
200

The solved v3 payload under response.

application/json
Other propertiesanyOptional
post/v3

Last updated