---
title: "List trades"
method: GET
path: "/accounts/{account_id}/trades"
tags: ["Trades"]
---

# List trades

`GET /accounts/{account_id}/trades`

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

## Path parameters

- `account_id` string, required — Account ID for the account.

## Query parameters

- `page_size` integer — Number of trades to return per page.
- `page_token` string — Cursor for the page to return.

## Response `200`

Successful response

- object
  - `data` Trade[], required
    - `created_at` integer, required — Milliseconds since epoch.
    - `account_id` string — Account ID for the account.
    - `account_number` string — Account number for the account.
    - `trade_id` string, required — Unique trade ID assigned by us.
    - `order_id` string, required — Unique order ID assigned by us.
    - `symbol` string
    - `side` 'buy' | 'sell' | 'sell-short', required — Buy, sell, sell-short indicator.
    - `quantity` string, required — String representation of quantity.
    - `price` string, required — String representation of a price.
    - `running_position` string, required — String representation of quantity.
  - `next_page_token` string — Cursor for the next page of results.

## Other responses

- `default` — Error response

---

[API](https://skmtc.net/clear-street/apis/common-api-models.md) · [All operations](https://skmtc.net/clear-street/apis/common-api-models/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/clear-street/common-api-models/revisions/05b4df42c056/schema)
