v3 Bypass Solution
Our solution automates the solving of a GeeTest v3 Captcha
How the Solution Works
To bypass a GeeTest v3 captcha:
Parse the
gt
andchallenge
parameters (found in the page’s HTML or from a specific endpoint).Send the
gt
andchallenge
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
orip:port:mail:password
).
Example Response
{
"response": {
"geetest_challenge": "567fc6015320e44041dad5e517c73499",
"geetest_validate": "ee08eee1cd458f705174a7638b74845b",
"geetest_seccode": "ee08eee1cd458f705174a7638b74845b|jordan"
}
}
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.
The Geetest gt
parameter from the captcha.
The Geetest challenge
parameter from the captcha.
Optional proxy to use for solving, format ip:port
or ip:Port:mail:password
.
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"
}
}
Last updated
Was this helpful?