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

Solve Cloudflare Turnstile

POST
/solve/turnstile
Solve a Cloudflare Turnstile managed challenge widget.
Cost: 0.5 credits per solve ($0.0005 USD)
Average Time: 2-4 seconds
Success Rate: ~98%
How It Works:
1.
Identify the site_key from the Turnstile widget (data-sitekey attribute)
2.
Get the page URL where the widget appears
3.
Call this endpoint with the parameters
4.
Submit the returned token in the cf-turnstile-response form field
Proxy Recommendations:
Optional but recommended for production
Any proxy type works (residential, datacenter, mobile)
Ensure proxy location matches expected user location
Resource Blocking:
Enable block_resources (default: true) to block images/fonts/media for faster solving.

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
Turnstile 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/turnstile' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "url": "https://example.com/login",
    "site_key": "0x4AAAAAAAA1234567890abcdef"
}'
Response Response Example
200 - Successful solve
{
    "success": true,
    "request_id": "8d0f7780-8536-51ef-a55c-f18gd2g01bf8",
    "result": {
        "token": "0.abcdef1234567890ghijklmnopqrstuvwxyz0123456789ABCDEFG"
    },
    "solve_time": 2341,
    "cost_credits": 0.5
}
Modified at 2025-10-30 19:25:55
Previous
Solve Geetest v4 Captcha
Next
Solve Cloudflare Interstitial/WAF
Built with