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

    Quick Start

    Get from zero to solving captchas in under 2 minutes.

    Step 1: Create Your Account#

    1.
    Go to tokensniped.com/auth/register
    2.
    Sign up with email or OAuth (GitHub, Google, Discord)
    3.
    Verify your email if using email signup

    Step 2: Get Your API Key#

    1.
    Navigate to Dashboard → API Keys
    2.
    Click Create New Key
    3.
    Give it a name (e.g., "Development", "Production")
    4.
    Copy and save the key — you won't see it again!
    Your key looks like: sk_live_aBcDeFgHiJkLmNoPqRsTuVwXyZ...

    Step 3: Claim Free Credits#

    Every account gets 100 free credits daily:
    1.
    Go to Dashboard → Billing
    2.
    Click the green "Claim 100 Free Credits" button
    3.
    Done! You now have credits to start solving

    Step 4: Make Your First Request#

    Using cURL#

    Using Python#

    Using JavaScript/Node.js#

    Step 5: Use the Solution#

    Once you have the token, submit it with your form:

    Understanding the Response#

    All solve endpoints return the same structure:
    {
      "success": true,
      "request_id": "550e8400-e29b-41d4-a716-446655440000",
      "result": {
        "token": "0.AaAAAABBBBCCCC..."  // The solution
      },
      "solve_time_ms": 2543,
      "cost_credits": 0.5
    }
    FieldDescription
    successtrue if solved, false if failed
    request_idUnique ID for tracking/debugging
    resultThe solution (format varies by captcha type)
    solve_time_msHow long the solve took
    cost_creditsCredits charged (0 if failed)

    What's Next?#

    Learn about each captcha type
    Check out more code examples
    Read best practices for production
    Join our Discord for support
    Modified at 2025-12-02 02:26:30
    Previous
    Introduction
    Next
    Frequently Asked Questions
    Built with