GET
/
api
/
payments
/
v3
/
accounts
/
{accountID}
/
balances
curl --request GET \
  --url http://localhost:55001/api/payments/v3/accounts/{accountID}/balances \
  --header 'Authorization: Bearer <token>'
{
  "cursor": {
    "pageSize": 15,
    "hasMore": false,
    "previous": "YXVsdCBhbmQgYSBtYXhpbXVtIG1heF9yZXN1bHRzLol=",
    "next": "",
    "data": [
      {
        "accountID": "<string>",
        "createdAt": "2023-11-07T05:31:56Z",
        "lastUpdatedAt": "2023-11-07T05:31:56Z",
        "asset": "<string>",
        "balance": 123
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

accountID
string
required

The account ID

Query Parameters

asset
string

The asset to filter by

fromTimestamp
string

The start of the time range to filter by

toTimestamp
string

The end of the time range to filter by

pageSize
integer

The number of items to return

Required range: 1 <= x <= 1000
cursor
string

Parameter used in pagination requests. Set to the value of next for the next page of results. Set to the value of previous for the previous page of results. No other parameters can be set when this parameter is set.

Response

200
application/json

OK

The response is of type object.