PnL History

View historical profit and loss data

Get PnL History

GET /v1/account/pnl-history?period=daily&limit=30
Authorization: Bearer <token>

Query Parameters:

ParameterTypeRequiredDefaultDescription
periodstringNodailyGrouping period: daily, weekly, or monthly
limitnumberNo30Number of periods to return

Response:

{
  "ok": true,
  "history": [
    {
      "date": "2026-03-27",
      "pnl": -2.34,
      "volume": 15234.56,
      "trades": 12
    },
    {
      "date": "2026-03-26",
      "pnl": 45.67,
      "volume": 28901.23,
      "trades": 8
    }
  ],
  "summary": {
    "totalPnl": 43.33,
    "totalVolume": 44135.79,
    "totalTrades": 20
  }
}
FieldDescription
datePeriod start date (YYYY-MM-DD or YYYY-MM for monthly)
pnlNet realized PnL for the period (after fees)
volumeTotal trading volume in USDT
tradesNumber of executed trades
summaryAggregated totals across all returned periods

On this page