CaptchaKiller Documentation
  • Captcha Tasks
    • Recaptcha V2
      • GET
      • POST
      • Error Codes
    • Recaptcha V2 Enterprise
      • GET
      • POST
      • Error Codes
    • Recaptcha V3 Low Score
      • GET
      • POST
      • Error Codes
    • Funcaptcha - Arkoselabs
      • GET
      • POST
      • Error Codes
    • MTCaptcha
      • GET
      • POST
      • Error Codes
    • Text Captcha
      • GET
      • POST
      • Error Codes
  • Integrations
    • Python
    • Node.js
  • GENERAL API
    • View Balance
  • Other
    • Support
    • Partnership Program
Powered by GitBook
On this page
  • View Balance API
  • Request Example
  • Response Example
  • Response Errors

Was this helpful?

  1. GENERAL API

View Balance

View Balance API

Balance may take up to 10 seconds to update.

NOTE: You can also retrieve your current API key balance by accessing the value of the 'x-userBalance' header that the server returns each time it successfully solves a captcha.

ENDPOINT: https://api.captchakiller.net/u/balance

Request User Balance

Header
Type
Description
Example Value

x-api-key

string

Required. Your API Key.

example

Request Example

GET /u/balance
x-api-key: example

Response Example

{
    "balance": "example"
}

Response Errors

Something went wrong retrieving your balance.

{
    "errorId": 1007,
    "error": "Server Error"
}

Invalid API Key

{
    "errorId": 1001,
    "error": "API key blocked: API key not found"
}

Rate limit exceeded.

{
    "errorId": 1006,
    "error": "..."
}

Unauthorized / Missing API Key.

{
    "errorId": 1005,
    "error": "Unauthorized/API Key Missing"
}

Last updated 1 year ago

Was this helpful?

Page cover image