---
title: "List Settlement Accounts Transactions"
method: GET
path: "/settlement_accounts/{settlement_account_id}/transactions"
tags: ["Cash Settlement"]
---

# List Settlement Accounts Transactions

`GET /settlement_accounts/{settlement_account_id}/transactions`

## Path parameters

- `settlement_account_id` string, required — A settlement account identifier

## Query parameters

- `cursor` string
- `limit` integer

## Response `200`

Successful Response

- PageSettlementAccountTransactionResponse
  - `data` SettlementAccountTransactionResponse[], required — The elements of the response.
    - union
      - SettlementAccountTransactionResponse1
        - `id` string, required — A string representing the unique identifier of this settlement transaction.
        - `type` 'payment', required — The value `"payment"` for a payment transaction.
        - `amount` string, required — The value of the transaction, expressed using `currency`.
        - `created_at` string, date-time, required — A timestamp representing the point in time when the transaction was created.
        - `currency` string, required — An ISO 4217 three-letter currency code. Its value represents the currency for the amount and fee listed here. The only currently available currency is `"EUR"`.
        - `direction` 'credit' | 'debit', required
        - `payment_details` object, required
          - `reference` string, required — The reference text for the transaction.
          - `sender_iban` string, required — The bank account sending the amount using IBAN (International Bank Account Number) according to ISO 13616-1:2020.
          - `recipient_iban` string, required — The bank account receiving the amount using IBAN (International Bank Account Number) according to ISO 13616-1:2020.
          - `booking_date` string, required
      - SettlementAccountTransactionResponse2
        - `id` string, required — A string representing the unique identifier of this settlement transaction.
        - `type` 'settlement', required — The value `"settlement"` for a settlement transaction.
        - `amount` string, required — The value of the transaction, expressed using `currency`.
        - `created_at` string, date-time, required — A timestamp representing the point in time when the transaction was created.
        - `currency` string, required — An ISO 4217 three-letter currency code. Its value represents the currency for the amount and fee listed here. The only currently available currency is `"EUR"`.
        - `direction` 'credit' | 'debit', required
        - `settlement` string, required — A reference to the corresponding settlement.
  - `pagination` Pagination, required — Information about accessing elements beyond the ones that were returned.
    - `next_cursor` string — When fetching long lists of elements, you can use our pagination feature to fetch batches of data. If a response contains the property `pagination.next_cursor`, you can pass its value via the query item `cursor` to generate the request for the next batch of data.

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `404` — Not Found
- `422` — Unprocessable Entity
- `5XX` — Server Error

---

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