TakionAPI
Start a TrialJoin our DiscordBuy a PlanDashboard
  • Takion API
  • Interacting with our APIs
  • Datadome
    • Bypass Solution
    • Example Implementations
    • Common Errors & Troubleshooting
  • Incapsula / Imperva
    • reese84 Bypass Solution
    • ___utmvc Bypass Solution
    • Example Implementations
    • Common Errors & Troubleshooting
  • Perimeter X Mobile
    • Bypass Solution
    • Example Implementations
  • GeeTest
    • v3 Bypass Solution
    • v4 Bypass Solution
    • Example Implementations
  • AWS Cognito
    • Bypass Solution
    • Example Implementations
  • Castle
    • Bypass Solution
    • Example Implementations
  • NuData
    • Bypass Solution
    • Example Implementations
  • Image-to-Text Captchas / OCR
    • Bypass Solution
    • Example Implementations
  • Frameworks & Modules
    • Adyen and riskData
    • Queue-IT Module
Powered by GitBook
On this page

Was this helpful?

  1. GeeTest

v4 Bypass Solution

Our solution automates the solving of a GeeTest v4 Captcha

How the Solution Works

To bypass a GeeTest v4 captcha:

  1. Parse the captcha_id and (optionally) kind from the captcha. The kind defaults to "slide" but may vary based on the captcha type (e.g., AI, puzzle, icon).

  2. Send the captcha_id to our API, and retrieve the response.

Parameters:

  • captcha_id (required): The captcha's captcha_id.

  • kind (optional): The type of captcha to solve (defaults to "slide").

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

Example Response:

{
  "response": {
    "captcha_id": "fcd636b4514bf7ac4143922550b3008b",
    "lot_number": "e4c0b946b91c4aeabbc343b9a0f048ca",
    "pass_token": "4856da4c49ca...3edea00d688e",
    "gen_time": "1725490466",
    "captcha_output": "Vt45iXQep...=="
  }
}
Previousv3 Bypass SolutionNextExample Implementations

Last updated 9 months ago

Was this helpful?

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

join our discord
puchase a plan

Solve Geetest v4

get

This endpoint solves the Geetest v4 captcha by accepting the captcha_id parameter. Optionally, a proxy can be passed to be used during the solving process. You can also specify the kind of captcha to solve (by default, it's slide).

Authorizations
Query parameters
captcha_idstringRequired

The Geetest captcha_id parameter from the captcha.

kindstringOptional

The kind of captcha to solve, such as ai, slide, icon, ... Defaults to slide.

proxystringOptional

Optional proxy to use for solving, format ip:port or ip:Port:mail:password.

Responses
200
Captcha solved
application/json
400
Bad request, missing or invalid parameters
application/json
500
Internal server error
application/json
get
GET /v4 HTTP/1.1
Host: geetest.takionapi.tech
x-api-key: YOUR_API_KEY
Accept: */*
{
  "response": {
    "captcha_id": "fcd636b4514bf7ac4143922550b3008b",
    "lot_number": "e4c0b946b91c4aeabbc343b9a0f048ca",
    "pass_token": "4856da4c49ca...3edea00d688e",
    "gen_time": "1725490466",
    "captcha_output": "Vt45iXQep...=="
  }
}
  • How the Solution Works
  • Parameters:
  • Example Response:
  • GETSolve Geetest v4