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

# Get list of accounts

`POST /api/service/data/accounts/list`

Retrieves the list of accounts for a given data session.

## Request body

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

## Response `200`

Returns the list of bank accounts for the given data session

- ListAccountsResponseDto
  - `accounts` object[], required — Array of bank accounts for the given data session
    - `id` string, uuid, required — The ID of the account.
    - `financialAddress` object[], required — Financial address details of the account
      - `type` 'iban' | 'sort_code' | 'bank_code' | 'bban' | 'wallet', required
      - `iban` object
        - `accountHolderName` string
        - `iban` string, required
        - `bic` string
      - `sortCode` object
        - `accountHolderName` string
        - `sortCode` string, required
        - `accountNumber` string, required
      - `bankCode` object
        - `accountHolderName` string
        - `code` string, required
        - `accountNumber` string, required
      - `bban` object
        - `accountHolderName` string
        - `bban` string, required
        - `bic` string
      - `wallet` object
        - `address` string, required — The blockchain wallet address
        - `blockchain` 'ETH' | 'ETH-SEPOLIA' | 'SOL' | 'SOL-DEVNET' | 'MATIC' | 'MATIC-AMOY', required — The blockchain network
    - `bankId` string, required — The ID of the bank.
    - `bankName` string, required — The name of the bank.
    - `currency` string, required — The currency of the account.
    - `accountName` string — The name of the account.

## Changes

- **2026-01-14** `999c91fe685d` — 1 info
  - added the required property `accounts/items/financialAddress/items/wallet/blockchain` to the response with the `200` status
- **2025-10-17** `102fab1c7e1a` — 1 warning, 1 info
  - added the new `wallet` enum value to the `accounts/items/financialAddress/items/type` response property for the response status `200`
  - added the optional property `accounts/items/financialAddress/items/wallet` to the response with the `200` status

[Change history](https://skmtc.dev/augustus/apis/ivy-api/changes/api/service/data/accounts/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.dev/augustus/apis/ivy-api/revisions/917638bf9349?raw)
