GET api/Performance?snapshotId={snapshotId}
Gets performance snapshots. Returns all snapshots or a specific one when snapshotId is provided.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| snapshotId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of GetPerformanceSnapshotsResult| Name | Description | Type | Additional 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
}
]