---
title: "List Account Transactions"
method: GET
path: "/accounts/{accountID}/transactions"
tags: ["Transactions"]
---

# List Account Transactions

`GET /accounts/{accountID}/transactions`

Retrieves a list of Account Transactions by accountID.

## Path parameters

- `accountID` string, required — The user's unique account identifier.

## Query parameters

- `from` string, required
- `to` string, required
- `limit` number
- `offset` string
- `direction` 'prev' | 'next'

## Response `200`

Retrieving a list of Account Transactions was Successful.

- Transaction[] — A list of transactions.
  - `accountAmount` number — The amount of the transaction.
  - `accountBalance` number — The cash balance of the account at the time of the transaction.
  - `accountType` 'LIVE' — The type of account that has been created.
  - `dividend` Dividend
    - `type` 'CASH' | 'STOCK' | 'RETURN_OF_CAPITAL' | 'DISTRIBUTION_LONG' | 'DISTRIBUTION_SHORT' | 'OTHER' — The dividend type, whether a cash or stock dividend.
    - `amountPerShare` number — The amount of the dividend issued, per share.
    - `taxCode` 'FULLY_TAXABLE' | 'NON_TAXABLE' | 'TAX_EXEMPT' | 'null' — Whether the dividend is taxable or not.
  - `dividendTax` object — An object containing details of a dividend withholding.
    - `rate` number — The Witholding rate associated with the dividend payment.
    - `type` 'FOREIGN_TAX' | 'NON_RESIDENTIAL_ALIEN' | 'OTHER' — The type of tax associated with the withholding
  - `dnb` boolean — If false, the transaction was sent to inteliclear. Default is false.
  - `comment` string — A comment describing the transaction
  - `finTranID` string — The internal and unique transaction identification number.
  - `finTranTypeID` 'CSR' | 'CSD' | 'FEE' | 'JNLC' | 'CADJ' | 'INT' | 'SPUR' | 'SSAL' | 'MERGER_ACQUISITION' | 'DIV' | 'DIVTAX' | 'DIVNRA' | 'STCK' | 'COMM' | 'SPINOFF' | 'STOCK_SPLIT' | 'ACATS_CASH' | 'ACATS_STOCK' | 'CCPUR' | 'CCSAL' | 'SLIP' | 'DIVM' | 'PTP_WITHHOLDING' — The abbreviated transaction type identifier.
  - `feeSec` number — The sec fee charged to an applicable sell order. Reference your fee schedule for SEC fee amounts per share.
  - `feeTaf` number — Trading activity fee (TAF) for an applicable sell order. Reference your fee schedule for TAF fee amounts per share.
  - `feeBase` number — The net fee amount of TAF and SEC Fees for a given sell order.
  - `feeXtraShares` number — Commission charged when the share quantity is greater than the base share amount. Reference your commission schedule for more info.
  - `feeExchange` number — An Exchange Fee applied to an order.
  - `fillQty` number — The quantity of shares filled for a transaction.
  - `fillPx` number — The fill price of the order for the given transaction.
  - `orderID` string — A unique DriveWealth order identifier created when an order is placed.
  - `mergerAcquisition` object — An object containing details of a corporate event, such as a merger or an acquisition.
    - `type` 'EXCHANGE_STOCK_CASH' | 'ADD_SHARES' | 'ADD_SHARES_CASH' | 'ADD_SHARES_REMOVE_CASH' | 'REMOVE_SHARES' | 'REMOVE_SHARES_CASH' | 'REMOVE_SHARES_ADD_CASH' — The transaction result of the corporate event
    - `acquirer` object — Object containing details of the acquiring company
      - `id` string, uuid — A unique ID created by DriveWealth to identify a specific instrument.
      - `symbol` string — The instrument ticker symbol.
      - `name` string — The name of the acquiring company
    - `acquiree` object — Object containing details of the company being acquired
      - `id` string, uuid — A unique ID created by DriveWealth to identify a specific instrument.
      - `symbol` string — The instrument ticker symbol.
      - `name` string — The name of the company being acquired
  - `positionDelta` number — The delta in the number of shares due to the corporate action.

---

[API](https://skmtc.net/drivewealth/apis/authentication-apis.md) · [All operations](https://skmtc.net/drivewealth/apis/authentication-apis/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/drivewealth/authentication-apis/versions/9fced6d0ac41/schema)
