TokenSniped
HomeDashboardDocs
HomeDashboardDocs
TokenSniped
  1. Geetest
  • TokenSniped API
    • Account
      • Get Credit Balance
      • Get Transaction History
      • Get Solve Request History
    • Geetest
      • Solve Geetest v4 Captcha
        POST
    • Turnstile
      • Solve Cloudflare Turnstile
    • Interstitial
      • Solve Cloudflare Interstitial/WAF
    • Schemas
      • Schemas
        • GeetestSolution
        • TurnstileSolution
        • InterstitialSolution
        • Transaction
        • SolveRequestLog
        • Error
      • Response
        • BadRequest
        • Unauthorized
        • InsufficientCredits
        • RateLimited
        • SolverError
  1. Geetest

Solve Geetest v4 Captcha

POST
/solve/geetest
Solve a Geetest v4 captcha challenge.
Supported Challenge Types:
slide - Slide puzzle (most common)
icon - Icon/image selection
gobang - Gobang/five-in-a-row game
ai - AI verification challenges
Cost: 0.5 credits per solve ($0.0005 USD)
Average Time: 3-5 seconds
Success Rate: ~95%
How It Works:
1.
Obtain the captcha_id from the Geetest widget on target site
2.
Identify the risk_type (usually visible in network requests)
3.
Call this endpoint with the parameters
4.
Submit the returned tokens to complete the challenge
Proxy Recommendations:
Optional but recommended for production use
Use residential proxies for best results
Datacenter proxies work but may have lower success rates

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Body Params application/jsonRequired

Examples

Responses

🟢200OK
application/json
Captcha solved successfully
Body

🟠400Bad Request
🟠401Unauthorized
🟠402Payment Required
🟠429Too Many Requests
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
cURL
curl --location --request POST '/solve/geetest' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "captcha_id": "6ba6b71b4f3958a1c69ad839ba47836b",
    "risk_type": "slide"
}'
Response Response Example
200 - Successful solve
{
    "success": true,
    "request_id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
    "result": {
        "lot_number": "a1b2c3d4e5f6g7h8i9j0",
        "captcha_output": "xYzAbC123def456ghi789jkl012mno345pqr678stu901vwx234yz567",
        "pass_token": "abcdef1234567890ghijklmnopqrstuvwxyz0123456789abcdefgh",
        "gen_time": "1642680000"
    },
    "solve_time": 3542,
    "cost_credits": 0.5
}
Modified at 2025-10-30 19:25:55
Previous
Get Solve Request History
Next
Solve Cloudflare Turnstile
Built with