---
title: "Get trade stats"
method: POST
path: "/v1/report/trades/stats"
tags: ["Report"]
---

# Get trade stats

`POST /v1/report/trades/stats`

Gets aggregated trade data for a given period of time

## Request body

- GetTradeStatsRequest
  - `symbol` string
  - `startTime` string, date-time
  - `endTime` string, date-time
  - `bars` integer
  - `startTradeDate` Date — Date represents a calendar date.
    - `year` integer
    - `month` integer
    - `day` integer
  - `endTradeDate` Date — Date represents a calendar date.
    - `year` integer
    - `month` integer
    - `day` integer

## Response `200`

A successful response.

- GetTradeStatsResponse
  - `stats` TradeStats — TradeStats are a collection of stats on a set of trades.
    - `first` string, int64
    - `last` string, int64
    - `high` string, int64
    - `low` string, int64
    - `totalTradeCount` string, int64
    - `clearedTradeCount` string, int64
    - `volume` string, int64
    - `clearedVolume` string, int64
    - `notional` string, int64
    - `clearedNotional` string, int64
  - `bars` TradeStats[]
    - `first` string, int64
    - `last` string, int64
    - `high` string, int64
    - `low` string, int64
    - `totalTradeCount` string, int64
    - `clearedTradeCount` string, int64
    - `volume` string, int64
    - `clearedVolume` string, int64
    - `notional` string, int64
    - `clearedNotional` string, int64
  - `barStartTime` string[]
  - `barEndTime` string[]

---

[API](https://skmtc.dev/polymarket/apis/portfolio-api.md) · [All operations](https://skmtc.dev/polymarket/apis/portfolio-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/polymarket/portfolio-api/revisions/150874842db1/schema)
