---
title: "Get a statement's transactions"
method: GET
path: "/statements/{statement_id}/transactions"
tags: ["Statements"]
---

# Get a statement's transactions

`GET /statements/{statement_id}/transactions`

Gets the list of transactions for a statement's period.

## Path parameters

- `statement_id` string, uuid, required

## Query parameters

- `page_token` string — Optional pagination token to be provided to retrieve subsequent pages, returned from previous get
- `limit` integer — Maximum number of objects to return per page. If the limit is greater than 100, then it will be set to 100.

## Response `200`

List of transactions for a given statement.

- TransactionList
  - `transactions` Transaction[], required — Array of statement transactions
    - `data` TransactionData, required
      - `external_data` object, nullable — an unstructured json blob representing additional transaction information supplied by the integrator.
      - `lines` TransactionLine[], required — The set of accounting entries associated with this transaction. For example, a debit to a customer account will have a corresponding credit in a general ledger account.
        - `account_id` string, required — The account uuid associated with this transaction line
        - `account_no` string, required — The account number associated with this transaction line
        - `amount` integer, required — The amount (in cents) of the transaction
        - `currency` string, required — ISO 4217 alphabetic currency code of the transfer amount
        - `dc_sign` 'credit' | 'debit', required — The `dc_sign` represents the direction money was moved.
        - `uuid` string, uuid, required
      - `memo` string, required
      - `metadata` object, nullable
    - `effective_date` string, date-time, required — The "effective date" of a transaction. This may be earlier than posted_date in some cases (for example, a transaction that occurs on a Saturday may not be posted until the following Monday, but would have an effective date of Saturday)
    - `id` integer, required
    - `posted_date` string, date-time, required — The date the transaction was posted. This is the date any money is considered to be added or removed from an account.
    - `status` string, required
    - `subtype` string, required — The specific transaction type. For example, for `ach`, this may be "outgoing_debit".
    - `type` string, required — The general type of transaction. For example, "card" or "ach".
    - `uuid` string, uuid, required — The unique identifier of the transaction.
  - `next_page_token` string — If returned, use the next_page_token to query for the next page of results. Not returned if there are no more rows.

## Other responses

- `401` — Unauthorized
- `403` — Forbidden error
- `500` — Internal server error

---

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