---
title: "Retrieve Account Lots"
method: GET
path: "/accounts/{accountID}/position-details"
tags: ["Accounts"]
---

# Retrieve Account Lots

`GET /accounts/{accountID}/position-details`

Retrieves an Account Lots details by accountID.

## Path parameters

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

## Response `200`

Retrieving Account Lots details by accountID was Successful.

- AccountPositionLots
  - `accountID` string — The user's unique account identifier.
  - `accountNo` string — The user's unique account number, that is human readable.
  - `positions` PositionLots[]
    - `instrumentID` string, uuid — A unique ID created by DriveWealth to identify a specific instrument.
    - `symbol` string, nullable — The ticker symbol of the Instrument. Debt Instruments and Global Mutual Funds do not have symbols and are referred to buy their `instrumentID` or `ISIN`.
    - `currency` 'USD' — The name of the currency in abbreviation form.
    - `costBasis` number — The cost basis of the position.
    - `quantity` number — The total amount of securities held in this position.
    - `currentMarketPrice` number — The current market price of the instrument.
    - `currentMarketValue` number — The average price of the the total position.
    - `unrealizedPnL` number — The unrealized profit/loss of the position.
    - `effectiveCostPerShare` number — The effective cost per share of the position.
    - `side` string — The parent side of the position, which can be 'B' for Long or 'S' for Short.
    - `taxLots` PositionLegs[]
      - `id` string — A unique tax lot identifier.
      - `created` string — The timestamp when the position was created.
      - `initialQuantity` number — The initial quantity of shares for position leg.
      - `openQuantity` number — The total amount of shares that are currently held in this position leg.
      - `effectiveCostPerShare` number — The effective cost per share of the position leg.
      - `side` 'B' | 'S' | 'BUY_OPEN' | 'BUY_CLOSE' | 'SELL_OPEN' | 'SELL_CLOSE' — The side of the order.
      - `comment` string — A way to store a message/comment on the this object.

---

[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/revisions/9fced6d0ac41/schema)
