2026-5-22
2026-05-22¶
Aster Chain — New Documentation Section
- Added a new top-level documentation section Aster Chain with base URL
https://chainapi.asterdex.com(EN & ZH), exposing 3 endpoints underdocs/aster-chain/endpoints.md: GET /aster-chain/v3/account/status— Get Account Status (USER_DATA) — returns the account's privacy status (PUBLIC/PRIVATE). Weight 1.POST /aster-chain/v3/account/modify-status— Modify Account Status (TRADE) — updates the privacy status and broadcasts the change to the Aster Chain. Weight 5.POST /aster-chain/v3/transfer— Transfer to Address (WITHDRAW) — transfers assets (e.g.USDT) to another registered Aster Chain user address. Signed with the sourceuserwallet private key (EIP-712). ReturnstransferId,asset,amount,toAddress,timestamp, andstatus(SUCCESS/PENDING). Weight 50.
Futures V3 — New Strategy Order Endpoints
- Added 4 new strategy order endpoints in Futures V3 (EN & ZH), placed between
Reset User MMPandBind Sub-Account: POST /fapi/v3/placeStrategyOrder— Place Strategy Order (TRADE) — places an OTO / OCO / OTOCO strategy with asubOrderListof sub-orders (OTO/OCO = exactly 2; OTOCO = exactly 3). Weight 50.POST /fapi/v3/updateStrategyOrder— Update Strategy Order (TRADE) — updates one or more sub-orders of an existing strategy (max 2 for OTO/OCO, max 3 for OTOCO). Returns an array with one result per updated sub-order. Weight 50.GET /fapi/v3/strategyOpenOrder— Query Strategy Open Order (USER_DATA) — queries an open strategy bystrategyIdorclientStrategyId(mutually exclusive) andstrategyType. Weight 5.GET /fapi/v3/strategyHistoryOrder— Query Strategy History Order (USER_DATA) — queries historical strategies; max 90-day lookback window;limitdefault 500, max 1000. Weight 5.- Strategy types supported:
OTO,OCO,OTOCO; sub-order types supportLIMIT,MARKET,STOP,STOP_MARKET,TAKE_PROFIT,TAKE_PROFIT_MARKET,TRAILING_STOP_MARKET(withIOC/FOKnot supported forLIMIT).