#
balance - retrieve account balance
In this section you can learn how to send captchas to Byecap service and methods for recognizing them.
API ADDRESS
POST
https://api.byecap.ru/balance
Request format: JSON
#
Request parameters
required
optional
string clientKey Your unique account key, API key (You can find it here)
#
Request body example
{
"clientKey": "67b6bcbb1a728ea8d563de6d169a2057"
}
#
Response structure
int
errorId
Error identificator:
0 - no errors, the task has been successfully created, task ID located in taskId
property
1 - error, information about it is in the errorCode
property
string
errorCode
Error code. Check out error list.
double
balance
Amount of money available
#
Response example
{
"errorId": 0,
"balance": 456.789
}