Get account equity history
This endpoint allows users to get account equity and PnL history (over time).
GET /api/v1/portfolioQuery Parameters
Field
Type
Need
Description
Example
/api/v1/portfolio?account=42trU9A5...&time_range=7dResponse
{
"success": true,
"data": [
{
"account_equity": "61046.308885",
"pnl": "9297.553505",
"timestamp": 1761177600000
},
...
],
"error": null,
"code": null
}Field
Type
Description
Code Example (Python)
Last updated