v22

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

List trades

List trades for a given account for the current trading day.

get/accounts/{account_id}/trades

Path parameters

account_idstring required

Account ID for the account.

Example:100000

Query parameters

page_sizeinteger

Number of trades 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",
      "trade_id": "12390213",
      "order_id": "12390213",
      "symbol": "AAPL",
      "quantity": "100",
      "price": "123.99",
      "running_position": "100"
    }
  ]
}