---
title: "List transactions from a ledger"
method: GET
path: "/v2/{ledger}/transactions"
tags: ["ledger.v2"]
---

# List transactions from a ledger

`GET /v2/{ledger}/transactions`

List transactions from a ledger, sorted by id in descending order.

## Path parameters

- `ledger` string, required

## Query parameters

- `pageSize` integer
- `cursor` string
- `expand` string
- `pit` string, date-time
- `order` 'effective'
- `reverse` boolean
- `sort` string

## Request body

- object

## Response `200`

OK

- V2TransactionsCursorResponse
  - `resource` 'transactions' — The resource type carried by this cursor
  - `cursor` object, required — Paginated cursor wrapping the list of transactions
    - `pageSize` integer, required
    - `hasMore` boolean, required
    - `previous` string
    - `next` string
    - `data` V2Transaction[], required
      - `insertedAt` string, date-time — The request time: when the transaction was actually written to the ledger. Set by the ledger, not the caller. See [bi-temporality](https://docs.formance.com/modules/ledger/working-with/bi-temporality)
      - `updatedAt` string, date-time — When the transaction row was last modified, for example by a metadata change or a revert
      - `timestamp` string, date-time, required — The transaction time: when the transaction is considered to have occurred, also called the effective or booking date. This is the axis the ledger uses to compute balances and resolve point-in-time queries. Settable at creation, defaulting to current machine time if omitted, and immutable once written. See [bi-temporality](https://docs.formance.com/modules/ledger/working-with/bi-temporality)
      - `postings` V2Posting[], required — The fund movements making up the transaction
        - `amount` integer, required — Amount to move, as an arbitrary-precision integer expressed in the asset's smallest unit
        - `asset` string, required — The asset being moved, optionally carrying a scale suffix such as USD/2
        - `destination` string, required — Address of the account credited by this posting
        - `source` string, required — Address of the account debited by this posting
      - `reference` string — Optional caller-supplied identifier, unique within the ledger, used to deduplicate transactions
      - `metadata` V2Metadata, required — Arbitrary key/value pairs attached to the resource
      - `id` integer, required — Unique sequential identifier for this transaction within the ledger
      - `reverted` boolean, required — Indicates if the transaction has been reverted
      - `revertedAt` string, date-time — When the transaction was reverted, on the request-time axis. Absent if the transaction has not been reverted
      - `preCommitVolumes` V2AggregatedVolumes — Volumes aggregated per account and per asset
      - `postCommitVolumes` V2AggregatedVolumes — Volumes aggregated per account and per asset
      - `preCommitEffectiveVolumes` V2AggregatedVolumes — Volumes aggregated per account and per asset
      - `postCommitEffectiveVolumes` V2AggregatedVolumes — Volumes aggregated per account and per asset
      - `template` string — Name of the transaction template this transaction was created from, if any

## Other responses

- `default` — Error

## Changes

- **2026-08-31** `a0dfa3b73bf8` — 1 breaking, 1 info
  - the `cursor/data/items/metadata` response's property type/format changed from `object`/`` to ``/`` for status `200`
  - added `#/components/schemas/V2Metadata` to the `cursor/data/items/metadata` response property `allOf` list for the response status `200`
- **2026-02-20** `c0620f81a649` — 1 info
  - added the optional property `resource` to the response with the `200` status
- **2026-01-06** `76fa93a7b1aa` — 1 info
  - added the optional property `cursor/data/items/template` to the response with the `200` status
- **2025-12-12** `2945092328b9` — 2 warning
  - added the new `SCHEMA_ALREADY_EXISTS` enum value to the `errorCode` response property for the response status `default`
  - added the new `SCHEMA_NOT_SPECIFIED` enum value to the `errorCode` response property for the response status `default`
- **2025-07-16** `07091e08e779` — 1 info
  - added the optional property `cursor/data/items/updatedAt` to the response with the `200` status

[Full history](https://skmtc.dev/formancehq/apis/ledger-api/changes/v2/:ledger/transactions/get.md)

---

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