# IntraFi Balances
> When using IntraFi, each account's balance over the standard FDIC insurance amount is swept to various other institutions. Funds are rebalanced across banks as needed once per business day.

## The IntraFi Balance object
### Example
```json
{
  "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"
}
```
### Attributes
- `balances` (array of objects)
  Each entry represents a balance held at a different bank. IntraFi separates the total balance across many participating banks in the network.

  - `balances.balance` (integer)
    The balance, in minor units of `currency`, held with this bank.

  - `balances.bank` (string)
    The name of the bank holding these funds.

  - `balances.bank_location` (dictionary, nullable)
    The primary location of the bank.

      - `balances.bank_location.city` (string)
        The bank's city.

      - `balances.bank_location.state` (string)
        The bank's state.

  - `balances.fdic_certificate_number` (string)
    The Federal Deposit Insurance Corporation (FDIC) certificate number of the bank. Because many banks have the same or similar names, this can be used to uniquely identify the institution.

- `currency` (enum)
  The [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217) code for the account currency.
  Cases:
  * `USD` (US Dollar (USD))

- `effective_date` (string)
  The date this balance reflects.

- `total_balance` (integer)
  The total balance, in minor units of `currency`. Increase reports this balance to IntraFi daily.

- `type` (string)
  A constant representing the object's type. For this resource it will always be `intrafi_balance`.

## Get IntraFi balance
GET /accounts/{account_id}/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.
### Example
```curl
curl \
  --url "${INCREASE_URL}/accounts/account_in71c4amph0vgo2qllky/intrafi_balance" \
  -H "Authorization: Bearer ${INCREASE_API_KEY}"
```
### Path Parameters
- `account_id` (string, required)
  The identifier of the Account to get balances for.