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
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"
}
]
}