TokenSniped
HomeDashboardDocs
HomeDashboardDocs
TokenSniped
  1. Captcha Solving
  • Introduction
  • Quick Start
  • Frequently Asked Questions
  • Code Examples
  • Error Handling
  • Best Practices
  • Captcha Solving
    • Solve Geetest v4
      POST
    • Solve Cloudflare Turnstile
      POST
    • Solve WAF/Interstitial Challenge
      POST
  • Status & History
    • Get solve request status
      GET
    • Get solve history
      GET
  • Real-Time (SSE)
    • Stream solve status
      GET
    • Stream dashboard updates
      GET
    • Stream live solves
      GET
  • API Keys
    • List API keys
      GET
    • Create API key
      POST
    • Update API key
      PATCH
    • Delete API key
      DELETE
  • Billing
    • Get credit balance
      GET
    • Claim daily free credits
      POST
    • Get transaction history
      GET
    • Create Stripe checkout
      POST
    • Create crypto payment
      POST
    • List crypto currencies
      GET
  • Health check
    GET
  • Schemas
    • Schemas
      • GeetestRequest
      • TurnstileRequest
      • InterstitialRequest
      • CreateApiKeyRequest
      • UpdateApiKeyRequest
      • GeetestSuccessResponse
      • TurnstileSuccessResponse
      • InterstitialSuccessResponse
      • SolveErrorResponse
      • SolveStatusResponse
      • SolveHistoryItem
      • ApiKey
      • ApiKeyCreatedResponse
      • BalanceResponse
      • Transaction
      • StripeCheckoutResponse
      • CryptoCheckoutResponse
      • ErrorResponse
    • Response
      • ValidationError
      • Unauthorized
      • Forbidden
      • NotFound
      • InsufficientCredits
      • RateLimited
      • SolverError
HomeDashboardDocs
HomeDashboardDocs
TokenSniped
  1. Captcha Solving

Solve Geetest v4

POST
https://tokensniped.com/api/solve/geetest
Solve a Geetest v4 captcha challenge.
Cost: 0.5 credits per successful solve

Finding the Captcha ID#

The captcha_id is required and can be found in the page source or network requests:

Method 1: Browser DevTools (Recommended)#

1.
Open DevTools (F12 or Cmd+Option+I on Mac)
2.
Go to the Network tab
3.
Filter by geetest or captcha
4.
Look for requests to gcaptcha4.geetest.com
5.
Find captcha_id in the request parameters or response

Method 2: Page Source#

1.
View page source (Ctrl+U or Cmd+U)
2.
Search for captcha_id or gt4
3.
Look for initialization code like:

Method 3: Console Search#

1.
Open DevTools Console
2.
Press Ctrl+Shift+F (or Cmd+Shift+F) to open global search
3.
Search for captcha_id or initGeetest

Risk Types#

TypeDescriptionTypical Use Case
slideDrag slider puzzleMost common, default
iconClick icons in orderHigher security sites
gobangFive-in-a-row gameRare, gaming sites
aiAI-powered challengeAdvanced protection

Using the Result#

After solving, use the tokens in your form submission:

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 'https://tokensniped.com/api/solve/geetest' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "captcha_id": "b3d286a8bdd3cc048538b57984f36d7f",
    "risk_type": "ai"
}'
Response Response Example
200 - Success
{
    "success": true,
    "request_id": "550e8400-e29b-41d4-a716-446655440000",
    "result": {
        "lot_number": "f3faa3...",
        "pass_token": "a1b2c3d4e5f6...",
        "gen_time": "1699900000",
        "captcha_output": "eyJsb3RfbnVtYmVyIjoiZjNmYWEz..."
    },
    "solve_time_ms": 2543,
    "cost_credits": 0.5
}
Modified at 2025-12-02 13:42:10
Previous
Best Practices
Next
Solve Cloudflare Turnstile
Built with