get_user_fills_by_time
Retrieve user trading history and fill data from Hyperliquid DEX for specific time periods to analyze past trades and transaction records.
Instructions
Get trading history (fills) for a specific time range
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| endTime | No | End time in milliseconds | |
| startTime | No | Start time in milliseconds | |
| user | No | User wallet address (optional, defaults to configured wallet) |
Input Schema (JSON Schema)
{
"properties": {
"endTime": {
"description": "End time in milliseconds",
"type": "number"
},
"startTime": {
"description": "Start time in milliseconds",
"type": "number"
},
"user": {
"description": "User wallet address (optional, defaults to configured wallet)",
"type": "string"
}
},
"required": [],
"type": "object"
}