AsterAster REST API

All Orders

Get all account orders; active, canceled, or filled.

GET
/v1/aster/fapi/v1/allOrders

Authorization

HmacSha256
AuthorizationBearer <token>

HMAC SHA256 signature authentication for v1 endpoints

In: header

Query Parameters

symbol*stringrequired
orderId?integer
startTime?integer
endTime?integer
limit?integerdefault: 500
recvWindow?integer
timestamp*integerrequired

Response Body

application/json

curl -X GET "https://api.hypereth.io/v1/aster/fapi/v1/allOrders?symbol=string&timestamp=0"
[
  {
    "avgPrice": "string",
    "clientOrderId": "string",
    "cumQuote": "string",
    "executedQty": "string",
    "orderId": 0,
    "origQty": "string",
    "origType": "string",
    "price": "string",
    "reduceOnly": true,
    "side": "string",
    "positionSide": "string",
    "status": "string",
    "stopPrice": "string",
    "closePosition": true,
    "symbol": "string",
    "time": 0,
    "timeInForce": "string",
    "type": "string",
    "activatePrice": "string",
    "priceRate": "string",
    "updateTime": 0,
    "workingType": "string",
    "priceProtect": true
  }
]