Balance

View account balance

The request allows to view current balance of the account.

GET /client/api/v1/{apiKey}/balance

Path parameters

Name
Type
Description

apiKey*

String

Your personal API key.

Response

200: OK Success response
{
    "success": true,
    "balance": 25.03,
    "currencyCode": "USD",
    "error": null
}
200: OK Error response
{
    "success": false,
    "balance": null,
    "currencyCode": null,
    "error":
    {
        "code": 2,
        "message": "Error api key"
    }
}

Last updated