---
title: "List Float Account entries"
method: GET
path: "/bank_accounts/{bank_account_id}/entries"
tags: ["Bank Accounts"]
---

# List Float Account entries

`GET /bank_accounts/{bank_account_id}/entries`

Lists the settled ledger entries applied to a Float Account. Transactions and Transfers describe business operations; entries describe what was posted to this Float Account and changed its available balance. An entry may result from a payment, transfer, refund, recovery, return, fee, or manual adjustment, making this endpoint the complete account-level record within the availability window for reconciliation.

Float Account entries are available through this API for a rolling 24-month period, calculated from the time of the request. Entries created before the start of that window are not returned. Requests with either created-at filter before the start of the window return `422 Unprocessable Entity`.

Entries are returned in descending order by `created_at` and then `id`. The ID is a deterministic tie-breaker; entries with the same timestamp are not guaranteed to be returned in their original balance-application order.

`amount` is expressed in cents. Positive values credit the Float Account and negative values debit it.

## Path parameters

- `bank_account_id` string, uuid, required

## Query parameters

- `min_created_date` string, date-time
- `max_created_date` string, date-time
- `per_page` integer
- `starting_after` string, uuid

## Response `200`

OK

- ListFloatAccountEntriesResponse
  - `data` FloatAccountEntry[], required
    - `id` string, uuid, required — Unique ID of the entry
    - `created_at` string, date-time, required — Date and time in UTC when the entry was applied to the Float Account
    - `description` string, required — Description recorded for the entry
    - `amount` integer, required — Signed amount in cents. Positive values are credits and negative values are debits.
    - `available_balance_after` integer, required — Available balance in cents immediately after this entry was applied
    - `links` object, required
      - `self` string, uri, required — Canonical URL for this entry

## Other responses

- `400` — Bad Request - `per_page` is not an integer
- `403` — Forbidden - the access token does not have the `bank_accounts` scope
- `404` — Not Found - the Bank Account is unavailable or is not a Float Account
- `422` — Unprocessable Entity - `starting_after` is not an available entry in this Float Account, or a `created_at` filter is invalid or outside the rolling 24-month availability window

---

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