v22

latestOpenAPI 3.0.0raw.githubusercontent.com2026-03-03327794.1 KB
Positions

List positions

List current positions for a given account.

get/accounts/{account_id}/positions

Path parameters

account_idstring required

Account ID for the account.

Example:100000

Query parameters

page_sizeinteger

Number of positions to return per page.

page_tokenstring

Cursor for the page to return.

Response

Successful response

next_page_tokenstring

Cursor for the next page of results.

Example response

{
  "data": [
    {
      "account_id": "100000",
      "account_number": "ACC0001",
      "symbol": "AAPL",
      "quantity": "100"
    }
  ]
}