POST
/
v1
/
spot
/
aster
/
orders
Place Order
curl --request POST \
  --url https://api.example.com/v1/spot/aster/orders

Request

Same body format as Hyperliquid spot place-order.

Example

curl -X POST -H "X-API-Key: $API_KEY" \
  -H "Content-Type: application/json" \
  https://api.perps.studio/v1/spot/aster/orders \
  -d '{
    "symbol": "BTC/USDC",
    "side": "buy",
    "type": "limit",
    "size": "0.01",
    "price": "67000.00",
    "wallet": "0x1234...",
    "signature": "0xabcdef...",
    "nonce": 1712000000000
  }'