GET api/Performance?snapshotId={snapshotId}

Gets performance snapshots. Returns all snapshots or a specific one when snapshotId is provided.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
snapshotId

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of GetPerformanceSnapshotsResult
NameDescriptionTypeAdditional information
SnapshotID

integer

None.

Date

date

None.

StrategyID

integer

None.

DailyPnL

decimal number

None.

Equity

decimal number

None.

MaxDrawdown

decimal number

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "SnapshotID": 1,
    "Date": "2026-03-02T21:09:03.9342015-06:00",
    "StrategyID": 3,
    "DailyPnL": 1.0,
    "Equity": 1.0,
    "MaxDrawdown": 1.0
  },
  {
    "SnapshotID": 1,
    "Date": "2026-03-02T21:09:03.9342015-06:00",
    "StrategyID": 3,
    "DailyPnL": 1.0,
    "Equity": 1.0,
    "MaxDrawdown": 1.0
  }
]