Teller · Example Payload

Teller Get Balances Example

Retrieve real-time available and ledger balances for a bank account

BankingFinancial DataFinTechOpen BankingTransactionsUnified API

Teller Get Balances Example is an example object payload from Teller, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

titledescriptionrequestresponse

Example Payload

Raw ↑
{
  "title": "Get Account Balances Example",
  "description": "Retrieve real-time available and ledger balances for a bank account",
  "request": {
    "method": "GET",
    "url": "https://api.teller.io/accounts/acc_o3lgp2n76bhe9lfeip000/balances",
    "headers": {
      "Authorization": "Basic {base64(ACCESS_TOKEN:)}",
      "Teller-Version": "2020-10-12"
    }
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json"
    },
    "body": {
      "account_id": "acc_o3lgp2n76bhe9lfeip000",
      "available": "1234.56",
      "ledger": "1234.56",
      "links": {
        "self": "https://api.teller.io/accounts/acc_o3lgp2n76bhe9lfeip000/balances",
        "account": "https://api.teller.io/accounts/acc_o3lgp2n76bhe9lfeip000"
      }
    }
  }
}