Skip to main content

API Error codes

Here, you can find examples of error codes and their full description, please, notify us, if they occur.

CodeStatusMessageBalanceDescription of the response
400falseUnknown error occurredThe balance doesn’t need to be sentUsed when no other code fits the error type
404falseUser not foundThe balance doesn’t need to be sentUsed when user doesn’t exist
405falseUser blockedThe balance doesn’t need to be sentUsed when the user is blocked or has reached its limit
406falseDebit transaction not found in this eventInclude the current balance amount to the error responseUsed when transaction doesn’t exist
417falseToken not foundThe balance doesn’t need to be sentUsed when token does not match
410falseToken expiredThe balance doesn’t need to be sentUsed when player authentication process fails, for example player's session ended
409falseDuplicate. Transaction already existInclude the current balance amount in the error responseUsed when transaction was already processed
402falseInsufficient funds to place current wagerInclude the current balance amount in the error responseUsed when there is not enough balance to place a bet
456falseLimit exceededThe balance doesn’t need to be sentBetting limit has been reached

The request is executed using the GET method.

The following info is an example of the default supported error response format:

Example of error

{
"status": false,
"balance": 125000,
"errors": {
"code": 404,
"error": "Description"
}
}