List
Get balances
get/v1/financial_accounts/{financial_account_token}/balances
Get the balances for a given financial account.
Path Parameters
financial_account_tokenstring
formatuuid
Query Parameters
balance_datestring
optional
UTC date of the balance to retrieve. Defaults to latest available balance
formatdate-time
last_transaction_event_tokenstring
optional
Balance after a given financial event occured. For example, passing the event_token of a $5 CARD_CLEARING financial event will return a balance decreased by $5
formatuuid
Returns
dataarray of object
has_moreboolean
More data exists.
Request example Request
curl https://api.lithic.com/v1/financial_accounts/$FINANCIAL_ACCOUNT_TOKEN/balances \
-H "Authorization: $LITHIC_API_KEY"
200 Example
{
"data": [
{
"token": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"available_amount": 0,
"created": "2019-12-27T18:11:19.117Z",
"currency": "currency",
"last_transaction_event_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"last_transaction_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
"pending_amount": 0,
"total_amount": 0,
"type": "ISSUING",
"updated": "2019-12-27T18:11:19.117Z"
}
],
"has_more": true
}