---
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.
    - `due_fees` integer, nullable, required — The fees on the loan that are due and unpaid.
    - `due_interest` integer, nullable, required — The interest on the loan that is due and unpaid.
    - `due_principal` integer, nullable, required — The principal on the loan that is due and unpaid.
    - `not_due_fees` integer, nullable, required — The fees on the loan that are not yet due.
    - `not_due_interest` integer, nullable, required — The interest on the loan that is not yet due.
    - `not_due_principal` integer, nullable, required — The principal on the loan that is not yet due.
    - `past_due_balance` integer, required — The amount past due on the loan.
    - `receivables` object, nullable, required — The receivables balances for the loan.
      - `purchasable_balance` integer, required — The balance of seasoned receivables available to be purchased.
      - `purchased_balance` integer, required — The balance of receivables that have been purchased.
  - `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

## Changes

> 18 revisions in range; 1 not diffed.

- **2026-08-17** `173eb9049922` — 6 info
  - added the required property `loan/anyOf[subschema #1: Balance Lookup Loan]/due_fees` to the response with the `200` status
  - added the required property `loan/anyOf[subschema #1: Balance Lookup Loan]/due_interest` to the response with the `200` status
  - added the required property `loan/anyOf[subschema #1: Balance Lookup Loan]/due_principal` to the response with the `200` status
  - added the required property `loan/anyOf[subschema #1: Balance Lookup Loan]/not_due_fees` to the response with the `200` status
  - …2 more

[Change history](https://skmtc.dev/increase/apis/increase-api-2/changes/accounts/:account_id/balance/get.md)

---

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