---
title: "List Transactions"
method: GET
path: "/v1/financial_connections/transactions"
---

# List Transactions

`GET /v1/financial_connections/transactions`

Returns a list of Financial Connections `Transaction` objects.

## Query parameters

- `account` string, required
- `ending_before` string
- `expand` string[]
- `limit` integer
- `starting_after` string
- `transacted_at` union
  - object
    - `gt` integer
    - `gte` integer
    - `lt` integer
    - `lte` integer
  - integer
- `transaction_refresh` object
  - `after` string, required

## Response `200`

Successful response.

- object
  - `data` FinancialConnectionsTransaction[], required — Details about each object.
    - `account` string, required — The ID of the Financial Connections Account this transaction belongs to.
    - `amount` integer, required — The amount of this transaction, in cents (or local equivalent).
    - `currency` string, required — Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
    - `description` string, required — The description of this transaction.
    - `id` string, required — Unique identifier for the object.
    - `livemode` boolean, required — If the object exists in live mode, the value is `true`. If the object exists in test mode, the value is `false`.
    - `object` 'financial_connections.transaction', required — String representing the object's type. Objects of the same type share the same value.
    - `status` 'pending' | 'posted' | 'void', required — The status of the transaction.
    - `status_transitions` BankConnectionsResourceTransactionResourceStatusTransitions, required
      - `posted_at` integer, nullable — Time at which this transaction posted. Measured in seconds since the Unix epoch.
      - `void_at` integer, nullable — Time at which this transaction was voided. Measured in seconds since the Unix epoch.
    - `transacted_at` integer, required — Time at which the transaction was transacted. Measured in seconds since the Unix epoch.
    - `transaction_refresh` string, required — The token of the transaction refresh that last updated or created this transaction.
    - `updated` integer, required — Time at which the object was last updated. Measured in seconds since the Unix epoch.
  - `has_more` boolean, required — True if this list has another page of items after this one that can be fetched.
  - `object` 'list', required — String representing the object's type. Objects of the same type share the same value. Always has the value `list`.
  - `url` string, required — The URL where this list can be accessed.

## Other responses

- `default` — Error response.

---

[API](https://skmtc.net/stripe/apis/stripe-api-2.md) · [All operations](https://skmtc.net/stripe/apis/stripe-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/stripe/stripe-api-2/versions/3653ad45bbec/schema)
