Skip to content

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 under docs/aster-chain/endpoints.md:
  • GET /aster-chain/v3/account/statusGet Account Status (USER_DATA) — returns the account's privacy status (PUBLIC / PRIVATE). Weight 1.
  • POST /aster-chain/v3/account/modify-statusModify Account Status (TRADE) — updates the privacy status and broadcasts the change to the Aster Chain. Weight 5.
  • POST /aster-chain/v3/transferTransfer to Address (WITHDRAW) — transfers assets (e.g. USDT) to another registered Aster Chain user address. Signed with the source user wallet private key (EIP-712). Returns transferId, asset, amount, toAddress, timestamp, and status (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 MMP and Bind Sub-Account:
  • POST /fapi/v3/placeStrategyOrderPlace Strategy Order (TRADE) — places an OTO / OCO / OTOCO strategy with a subOrderList of sub-orders (OTO/OCO = exactly 2; OTOCO = exactly 3). Weight 50.
  • POST /fapi/v3/updateStrategyOrderUpdate 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/strategyOpenOrderQuery Strategy Open Order (USER_DATA) — queries an open strategy by strategyId or clientStrategyId (mutually exclusive) and strategyType. Weight 5.
  • GET /fapi/v3/strategyHistoryOrderQuery Strategy History Order (USER_DATA) — queries historical strategies; max 90-day lookback window; limit default 500, max 1000. Weight 5.
  • Strategy types supported: OTO, OCO, OTOCO; sub-order types support LIMIT, MARKET, STOP, STOP_MARKET, TAKE_PROFIT, TAKE_PROFIT_MARKET, TRAILING_STOP_MARKET (with IOC / FOK not supported for LIMIT).