---
title: "List transactions"
method: GET
path: "/v3/aggregation/transactions"
tags: ["Transactions"]
---

# List transactions

`GET /v3/aggregation/transactions`

Return a list of the user's transactions

## Query parameters

- `limit` number
- `account_id` number
- `since` string, date-time
- `min_date` string, date
- `max_date` string, date

## Response `200`

List transactions

- object — Represent paginated collection of resources.
  - `resources` Transaction[]
    - `id` number, required — Transaction's unique identifier
    - `clean_description` string, required — Transaction's description cleaned and processed by the API
    - `provider_description` string, required — Transaction's raw description taken from the provider
    - `amount` number, required — Transaction's amount A positive value indicates a credit and a negative value indicates a debit
    - `date` string, date, required — Transaction date
    - `booking_date` string, date — Actual date when the transaction is posted to the account
    - `transaction_date` string, date — Date on which the banking transaction is carried out but the the balance is not affected
    - `value_date` string, date — Value date of the transaction on the account
    - `updated_at` string, date-time, required — Timestamp recording when the transaction was last updated
    - `currency_code` string, required — 3 letters ISO 4217 currency code
    - `deleted` boolean, required — Flag to indicate that the transaction was deleted
    - `category_id` number — Transaction's category unique identifier
    - `operation_type` 'card' | 'check' | 'transfer' | 'direct_debit' | 'deposit' | 'withdrawal' | 'deferred_debit_card' | 'open_banking' | 'unknown' — Type the transactions as standard banking operation
    - `account_id` number, required — Transaction's account unique identifier
    - `future` boolean, required — Flag to indicate that the transaction will be debited in the future and doesn’t affect the account’s balance
    - `bridge_payment_information` object — The information of bridge payment entities after successful reconciliation
      - `payment_request_id` string — The id of the payment request the transaction was reconciled with
      - `payment_link_id` string — The id of the payment link the transaction was reconciled with
      - `payment_transaction_id` string — The id of the payment transaction the transaction was reconciled with
  - `pagination` object
    - `next_uri` string, nullable

## Other responses

- `401` — Error 401

---

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