DELETE
/
v1
/
perps
/
aster
/
orders
Cancel Order
curl --request DELETE \
  --url https://api.example.com/v1/perps/aster/orders

Upstream Mapping

Maps to Aster’s DELETE /fapi/v1/order with EIP-712 signed request.

Request

The request body is identical to the Hyperliquid cancel order endpoint.

Example

curl -X DELETE -H "X-API-Key: $API_KEY" \
  -H "Content-Type: application/json" \
  https://api.perps.studio/v1/perps/aster/orders \
  -d '{
    "symbol": "BTC",
    "orderId": "123456",
    "wallet": "0x1234...",
    "signature": "0xabcdef...",
    "nonce": 1712000000000
  }'