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

Get Credit Balance

GET
/balance
Get your current credit balance.
Use this endpoint to:
Monitor remaining credits before submitting solve requests
Set up low balance alerts in your application
Display balance in your UI
Implement automatic top-up triggers
Rate Limit: This endpoint does not count against your rate limit.
Recommended Usage:
Check balance before batch operations
Poll periodically (e.g., every 5 minutes) if needed
Cache the result to avoid unnecessary calls

Request

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

Responses

🟢200OK
application/json
Current credit balance
Body

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/balance' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Healthy balance
{
    "balance": 5000,
    "updated_at": "2024-01-20T15:30:00Z"
}
Modified at 2025-10-30 19:25:55
Next
Get Transaction History
Built with