TokenSniped
HomeDashboardDocs
HomeDashboardDocs
TokenSniped
    • 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

    Frequently Asked Questions

    General#

    What captcha types do you support?#

    We currently support:
    Geetest v4 — Slide puzzles, icon clicks, AI challenges
    Cloudflare Turnstile — Checkbox and invisible challenges
    WAF Interstitial — "Checking your browser" pages

    How fast are solves?#

    Captcha TypeTypical Time
    Geetest v42-5 seconds
    Turnstile2-5 seconds
    Interstitial10-60 seconds

    Do you charge for failed solves?#

    No. You only pay for successful solutions. If a solve fails, you're not charged.

    Is there a free tier?#

    Yes! Every account gets 100 free credits per day, forever. That's enough for:
    200 Geetest/Turnstile solves
    125 Interstitial solves
    No credit card required.

    Pricing#

    How does pricing work?#

    We use a credit system:
    1,000 credits = $1.00 USD
    Credits never expire
    Minimum purchase: $2.00

    What's the cost per captcha type?#

    Captcha TypeCreditsCost per 1,000
    Geetest v40.5$0.50
    Turnstile0.5$0.50
    Interstitial0.8$0.80

    Do you offer volume discounts?#

    Contact us at [email protected] for enterprise pricing.

    What payment methods do you accept?#

    Credit/Debit Cards via Stripe (Visa, Mastercard, Amex)
    Cryptocurrency via NowPayments (BTC, ETH, USDT, USDC, LTC, and more)

    Technical#

    How do I find the sitekey/captcha_id?#

    For Turnstile:
    1.
    Open browser DevTools (F12)
    2.
    Go to Elements tab
    3.
    Search for data-sitekey
    4.
    Copy the value (starts with 0x4 or 0x0)
    For Geetest:
    1.
    Open DevTools Network tab
    2.
    Filter by geetest
    3.
    Look for captcha_id in requests to gcaptcha4.geetest.com
    See our detailed guides for each captcha type.

    Should I use a proxy?#

    Captcha TypeProxy Recommendation
    GeetestOptional — use if target is geo-restricted
    TurnstileRecommended — improves success rates
    InterstitialRequired — must use same proxy for subsequent requests

    What proxy formats are supported?#

    http://host:port
    http://user:pass@host:port
    https://user:pass@host:port
    socks5://user:pass@host:port

    How do I use the token/cookies after solving?#

    Turnstile:
    Interstitial:
    Geetest:

    How long are tokens valid?#

    Token TypeValidity
    Turnstile token~5 minutes
    Geetest tokens~2 minutes
    Interstitial cookies30 min - 24 hours

    Can I use the API from a browser?#

    Not recommended. API keys should never be exposed in client-side code. Instead:
    1.
    Create a backend endpoint
    2.
    Call TokenSniped from your server
    3.
    Return the result to your frontend

    Account & API Keys#

    How many API keys can I create?#

    Unlimited. We recommend separate keys for different environments (dev, staging, prod).

    Can I set different rate limits per key?#

    Yes! Each API key has configurable:
    RPM — Requests per minute (1-1,000)
    RPD — Requests per day (1-100,000)

    What happens if I hit my rate limit?#

    You'll receive a 429 Too Many Requests response with a Retry-After header indicating how many seconds to wait.

    Can I rotate/regenerate a key?#

    You cannot regenerate an existing key, but you can:
    1.
    Create a new key
    2.
    Update your application to use the new key
    3.
    Delete the old key

    How do I check my remaining credits?#

    Dashboard: tokensniped.com/dashboard/billing
    API:

    Troubleshooting#

    "Invalid API key" error#

    Check for typos or extra spaces
    Ensure you're using the full key (not just the prefix shown in dashboard)
    Verify the key is active in your dashboard

    "Insufficient credits" error#

    Check your balance in the dashboard
    Claim your free daily credits
    Add more credits via card or crypto

    Solve keeps timing out#

    Increase the timeout parameter
    Try with a proxy (especially for Turnstile)
    Verify the target URL is accessible
    Check if the captcha parameters are correct

    Token doesn't work on target site#

    Ensure you're using the correct captcha type
    Double-check sitekey/captcha_id is from the same page
    For Turnstile, verify the sitekey format
    For Interstitial, use the same proxy and User-Agent

    High failure rate#

    Use residential proxies instead of datacenter
    Verify you're passing the correct parameters
    Contact support if issues persist

    Support#

    How do I contact support?#

    Email: [email protected]

    What information should I include in support requests?#

    1.
    Your request_id (from the API response)
    2.
    The error message
    3.
    The captcha type and parameters (without sensitive data)
    4.
    Steps to reproduce the issue
    Modified at 2025-12-02 02:26:41
    Previous
    Quick Start
    Next
    Code Examples
    Built with