v4

latestOpenAPI 3.1.02026-08-012402353.8 MB

Get IntraFi balance

Returns the IntraFi balance for the given account. IntraFi may sweep funds to multiple banks. This endpoint will include both the total balance and the amount swept to each institution.

get/accounts/{account_id}/intrafi_balance

Path parameters

account_idstring required

The identifier of the Account to get balances for.

Response

IntraFi Balance

currency'USD' required

The ISO 4217 code for the account currency.

effective_datestring date required

The date this balance reflects.

total_balanceinteger required

The total balance, in minor units of currency. Increase reports this balance to IntraFi daily.

type'intrafi_balance' required

A constant representing the object's type. For this resource it will always be intrafi_balance.

Example response

{
  "balances": [
    {
      "balance": 1750,
      "bank": "Example Bank",
      "bank_location": {
        "city": "New York",
        "state": "NY"
      },
      "fdic_certificate_number": "314159"
    }
  ],
  "currency": "USD",
  "effective_date": "2020-01-31",
  "total_balance": 1750,
  "type": "intrafi_balance"
}