---
title: "Retrieve an Account Balance"
method: GET
path: "/accounts/{account_id}/balance"
---

# Retrieve an Account Balance

`GET /accounts/{account_id}/balance`

Retrieve the current and available balances for an account in minor units of the account's currency. Learn more about [account balances](/documentation/balance).

## Path parameters

- `account_id` string, required — The identifier of the Account to retrieve.

## Query parameters

- `at_time` string, date-time — The moment to query the balance at. If not set, returns the current balances.

## Response `200`

Balance Lookup

- BalanceLookup — Represents a request to lookup the balance of an Account at a given point in time.
  - `account_id` string, required — The identifier for the account for which the balance was queried.
  - `available_balance` integer, required — The Account's available balance, representing the current balance less any open Pending Transactions on the Account.
  - `current_balance` integer, required — The Account's current balance, representing the sum of all posted Transactions on the Account.
  - `loan` object, nullable, required — The loan balances for the Account.
    - `due_at` string, date-time, nullable, required — The [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) time at which the loan payment is due.
    - `due_balance` integer, required — The total amount due on the loan.
    - `past_due_balance` integer, required — The amount past due on the loan.
  - `type` 'balance_lookup', required — A constant representing the object's type. For this resource it will always be `balance_lookup`.

## Other responses

- `4XX` — Error
- `5XX` — Error

---

[API](https://skmtc.net/increase/apis/increase-api.md) · [All operations](https://skmtc.net/increase/apis/increase-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/increase/increase-api/revisions/22125d715935/schema)
