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 Cloudflare Turnstile

POST
https://tokensniped.com/api/solve/turnstile
Solve a Cloudflare Turnstile captcha challenge.
Cost: 0.5 credits per successful solve

Finding the Sitekey#

The sitekey is required and can be found in the page HTML:

Method 1: Browser DevTools (Recommended)#

1.
Open DevTools (F12)
2.
Go to Elements tab
3.
Press Ctrl+F and search for turnstile or cf-turnstile
4.
Look for the data-sitekey attribute:

Method 2: Network Tab#

1.
Open DevTools Network tab
2.
Refresh the page
3.
Filter by turnstile or challenges.cloudflare.com
4.
Look for the sitekey in request parameters

Method 3: Page Source#

1.
View page source (Ctrl+U)
2.
Search for data-sitekey or cf-turnstile

Sitekey Formats#

Starts with 0x4 - Visible/managed Turnstile
Starts with 0x0 - Invisible Turnstile

Using the Token#

After solving, inject the token into the form:

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/turnstile' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "sitekey": "0x4AAAAAAB15_MciTzRVmY_y",
    "url": "https://thrill.com"
}'
Response Response Example
200 - Success
{
    "success": true,
    "request_id": "550e8400-e29b-41d4-a716-446655440001",
    "result": {
        "token": "0.AaAAAABBBBCCCC..."
    },
    "solve_time_ms": 8234,
    "cost_credits": 0.5
}
Modified at 2025-12-02 13:44:18
Previous
Solve Geetest v4
Next
Solve WAF/Interstitial Challenge
Built with