Get account equity history
This endpoint allows users to get account equity history (account equity over time).
Query Parameters
Field
Type
Need
Description
Example
"account"
string
required
User's wallet address
42trU9A5...
"start_time"
integer
optional
Start time in milliseconds
1625097600000
"end_time"
integer
optional
End time in milliseconds
1625184000000
"granularity_in_minutes"
integer
optional
Time granularity in minutes
60
"limit"
integer
optional
Maximum number of records to return, defaults to system defined limit
100
"offset"
integer
optional
Number of records to skip
0
Response
Status 200: Successfully retrieved portfolio history
Status 400: Invalid request parameters
Status 401: Unauthorized access
Status 500: Internal server error
Code Example (Python)
Last updated