TokenSniped
HomeDashboardDocs
HomeDashboardDocs
TokenSniped
  1. Status & History
  • 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. Status & History

Get solve request status

GET
https://tokensniped.com/api/solve/status/{requestId}
Retrieve the current status and result of a solve request.

Status Values#

StatusDescriptionNext Action
pendingRequest queuedWait and check again
processingBeing solvedWait and check again
completedSuccessfully solvedUse the result
failedSolve failedCheck error, retry if needed

Polling Strategy#

If not using SSE, poll with exponential backoff:

SSE Alternative (Recommended)#

For real-time updates without polling overhead, use our SSE endpoint:
GET /sse/solve/{requestId}

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
application/json
Status retrieved
Body

🟠401Unauthorized
🟠403Forbidden
🟠404Not Found
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://tokensniped.com/api/solve/status/550e8400-e29b-41d4-a716-446655440000' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Completed successfully
{
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "status": "completed",
    "solverType": "turnstile",
    "costCredits": 0.5,
    "solveTimeMs": 8234,
    "result": {
        "token": "0.AaAAAA..."
    },
    "createdAt": "2024-01-15T10:30:00Z",
    "completedAt": "2024-01-15T10:30:08Z"
}
Modified at 2025-12-02 02:47:51
Previous
Solve WAF/Interstitial Challenge
Next
Get solve history
Built with