AsterAster REST API

New Order V3

Send in a new order using Web3 authentication.

POST
/v1/aster/fapi/v3/order

Authorization

Web3Auth
Authorization<token>

Web3 authentication using user, signer, nonce, and signature parameters

In: header

Request Body

application/x-www-form-urlencoded

body*objectrequired

Response Body

application/json

curl -X POST "https://api.hypereth.io/v1/aster/fapi/v3/order" \  -H "Content-Type: application/x-www-form-urlencoded" \  -d 'symbol=string&side=BUY&type=LIMIT&user=string&signer=string&nonce=string&signature=string'
{
  "clientOrderId": "string",
  "cumQty": "string",
  "cumQuote": "string",
  "executedQty": "string",
  "orderId": 0,
  "avgPrice": "string",
  "origQty": "string",
  "price": "string",
  "reduceOnly": true,
  "side": "string",
  "positionSide": "string",
  "status": "string",
  "stopPrice": "string",
  "closePosition": true,
  "symbol": "string",
  "timeInForce": "string",
  "type": "string",
  "origType": "string",
  "activatePrice": "string",
  "priceRate": "string",
  "updateTime": 0,
  "workingType": "string",
  "priceProtect": true
}