---
title: "Get list of transactions"
method: POST
path: "/api/service/data/transactions/list"
tags: ["Data"]
---

# Get list of transactions

`POST /api/service/data/transactions/list`

Retrieves the list of transactions for a given data session. Returns transactions from the last 3 months.

## Request body

- ListAisTransactionsDto
  - `sessionId` string, required — The ID of the data session to retrieve transactions for.

## Response `200`

Returns the list of transactions for the given data session

- ListAisTransactionsResponseDto
  - `transactions` object[], required — Array of transactions for the given data session
    - `id` string, uuid, required — The ID of the transaction.
    - `accountId` string, uuid, required — The ID of the account the transaction belongs to.
    - `amount` string, required — The amount of the transaction.
    - `currency` string, required — The currency of the transaction.
    - `description` string — The description of the transaction.
    - `timestamp` unknown, required
    - `type` 'credit' | 'debit', required — The type of transaction (debit or credit).
    - `counterpartyName` string — The name of the counterparty (creditor or debtor) if available.

## Changes

- **2025-10-28** `cfd7b0e0db80` — 3 breaking, 3 warning, 1 info
  - added the new required request property `sessionId`
  - removed the required property `data` from the response with the `200` status
  - removed the required property `paging` from the response with the `200` status
  - removed the request property `afterCursor`
  - …3 more
- **2025-10-17** `102fab1c7e1a` — 2 warning
  - added the new `wallet` enum value to the `data/items/creditor/type` response property for the response status `200`
  - added the new `wallet` enum value to the `data/items/debtor/type` response property for the response status `200`

[Change history](https://skmtc.dev/augustus/apis/ivy-api/changes/api/service/data/transactions/list/post.md)

---

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