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

v3 Bypass Solution

Our solution automates the solving of a GeeTest v3 Captcha

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.

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"
  }
}

PreviousGeeTestNextv4 Bypass Solution

Last updated 8 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 v3

get

This endpoint solves the Geetest v3 captcha by accepting the gt and challenge parameters. Optionally, a proxy can be passed to be used during the solving process.

Authorizations
Query parameters
gtstringRequired

The Geetest gt parameter from the captcha.

challengestringRequired

The Geetest challenge parameter from the captcha.

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 /v3 HTTP/1.1
Host: geetest.takionapi.tech
x-api-key: YOUR_API_KEY
Accept: */*
{
  "response": {
    "geetest_challenge": "567fc6015320e44041dad5e517c73499",
    "geetest_validate": "ee08eee1cd458f705174a7638b74845b",
    "geetest_seccode": "ee08eee1cd458f705174a7638b74845b|jordan"
  }
}
  • How the Solution Works
  • Parameters:
  • Example Response
  • GETSolve Geetest v3