Account Balances

The account balances API provides your application with live, real-time account balances.

Properties

  • Name
    account_id
    Type
    string
    Description

    The id of the account the account balances belong to.

  • Name
    ledger
    Type
    string
    Description

    The account's ledger balance. The ledger balance is the total amount of funds in the account.

  • Name
    available
    Type
    string
    Description

    The account's available balance. The available balance is the ledger balance net any pending inflows or outflows.

  • Name
    links
    Type
    object
    Description

    An object containing links to related resources. A link indicates the enrollment supports that type of resource. Not every institution implements all of the capabilities that Teller supports. Your application should reflect on the contents of this object to determine what is supported by the financial institution.

  • Name
    links.self
    Type
    string
    Description

    A self link to the account balances.

  • Name
    links.account
    Type
    string
    Description

    A link to the account that owns the balances.


GET/accounts/:account_id/balances

Get Account Balances

Returns the account's balances.

Request

curl https://api.teller.io/accounts/acc_oiin624iajrg2mp2ea000/balances \
  -u test_token_ky6igyqi3qxa4:

Response

{
  "ledger" : "28575.02",
  "links" : {
      "account" : "https://api.teller.io/accounts/acc_oiin624iajrg2mp2ea000",
      "self" : "https://api.teller.io/accounts/acc_oiin624iajrg2mp2ea000/balances"
  },
  "account_id" : "acc_oiin624iajrg2mp2ea000",
  "available" : "28575.02"
}