# 
        getBalance - get account balance
    
In this section you can learn how to send captchas to 3xCaptcha service and methods for recognizing them.
API ADDRESS
POST https://api.3xcaptcha.com/getBalance
Request format: JSON
        # 
        Request parameters 
            required
         
            optional
        
    
string clientKey Your unique account key, API key (You can find it here)
        # 
        Request body example
    
{
  "clientKey": "f95f25ea9e71408d8f272d523f8c281d"
}
        # 
        Response structure
    
    int
 
    errorId
Error identification:
0 - no errors
1 - error, information about it is in the errorCode property
    string
 
    errorId
Error code. Check out error list
    double
 
    balance
Amount of money available
        # 
        Response example
    
{
  "errorId": 0,
  "balance": 456.789
}