Skip to main content
Each balance belongs to an Account. The balance fields appear within the balances object on each account. The Balances endpoint returns current balance information for all accounts associated with a link.

Attributes

AttributeTypeDescription
currency_codestringThree-character ISO 4217 currency code (e.g., USD)
balancestringCurrent account balance
available_balancestringAvailable balance for use. PENDING transactions may not be reflected.
credit_limitstringCredit limit (for credit accounts)

Endpoints

Example response

{
  "count": 1,
  "results": [
    {
      "id": "24d7e80942ce4ad58a93f70ce4115f5c",
      "type": "CHECKING",
      "subtype": "MONEY_MARKET",
      "mask": "6789",
      "nickname": "My account",
      "balances": {
        "currency_code": "USD",
        "balance": "100.00",
        "available_balance": "50.99",
        "credit_limit": "200.00"
      }
    }
  ]
}