getAllOrders
Retrieve all cryptocurrency trading orders from your Aster Finance account, including active, canceled, and filled orders, filtered by symbol and time range.
Instructions
Get all account orders; active, canceled, or filled.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| endTime | No | ||
| limit | No | ||
| orderId | No | ||
| startTime | No | ||
| symbol | Yes |
Input Schema (JSON Schema)
{
"properties": {
"endTime": {
"type": "number"
},
"limit": {
"type": "number"
},
"orderId": {
"type": "number"
},
"startTime": {
"type": "number"
},
"symbol": {
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}