TokenSniped
HomeDashboardDocs
HomeDashboardDocs
TokenSniped
  1. Real-Time (SSE)
  • 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. Real-Time (SSE)

Stream solve status

GET
https://tokensniped.com/api/sse/solve/{requestId}
Real-time solve status updates via Server-Sent Events.

Connection Examples#

Node.js (eventsource package)#

Python (sseclient-py)#

Events#

EventDescription
statusStatus update with current state and result (if completed)
errorError occurred (request not found, unauthorized, etc.)

Auto-Close#

The connection automatically closes when:
Solve completes (status: completed)
Solve fails (status: failed)
Request not found
Authentication error

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Path Params

Responses

🟢200OK
text/event-stream
SSE stream established
Body

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://tokensniped.com/api/sse/solve/' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
event: status
data: {"id":"550e8400-...","status":"processing","solverType":"turnstile"}

event: status
data: {"id":"550e8400-...","status":"completed","result":{"token":"0.AaA..."}}
Modified at 2025-12-02 02:47:51
Previous
Get solve history
Next
Stream dashboard updates
Built with