TokenSniped
HomeDashboardDocs
HomeDashboardDocs
TokenSniped
  1. Billing
  • 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. Billing

Claim daily free credits

POST
https://tokensniped.com/api/billing/claim-daily
Claim your free 100 credits per day.
Limits:
Once per day (resets at midnight UTC)
100 credits per claim
This is a great way to try out the service or supplement your usage!

Request

Authorization
API Key
Add parameter in cookie
better-auth.session_token
Example:
better-auth.session_token: ********************
or

Responses

🟢200OK
application/json
Daily credits claimed
Body

🟠400Bad Request
🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://tokensniped.com/api/billing/claim-daily'
Response Response Example
200 - Example 1
{
    "success": true,
    "credited": 100,
    "newBalance": 1350.5,
    "message": "Claimed 100 free credits!"
}
Modified at 2025-12-02 02:47:51
Previous
Get credit balance
Next
Get transaction history
Built with