Skip to main content
GET
/
api
/
v2
/
customers
/
balances
Get customer balances
curl --request GET \
  --url https://sandbox.killb.app/api/v2/customers/balances \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "<string>",
    "customerId": "<string>",
    "accountId": "<string>",
    "currency": "<string>",
    "amount": "<string>",
    "active": true,
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
]

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Response

id
string
required
customerId
string
required
accountId
string
required
currency
string
required
amount
string
required
active
boolean
required
createdAt
string<date-time>
required
updatedAt
string<date-time>
required