Get current account balance
GET
/v1/account/balanceUse a GET request to the /v1/account/balance endpoint to obtain balance information. There is no need to specify path or query parameters; your token will identify the account.
Authorization
bearerAuth AuthorizationBearer <token>
In: header
Response Body
application/json
curl -X GET "https://example.com/v1/account/balance"{ "current_balance": 100, "next_invoice_total_due": 200, "currency": "EUR"}