Sign in

Place margin order

documented

Submit a new margin order.

POST /sapi/v1/margin/orderMarginno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.binance.com/sapi/v1/margin/order?timestamp={{timestamp}}&signature={{signature}}&recvWindow={{recvWindow}}" \
  -X POST \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "X-MBX-APIKEY: {{BINANCE_API_KEY}}" \
  -d '{"symbol": "{{$symbol}}", "side": "{{$side}}", "type": "{{$type}}", "timeInForce": "{{$timeInForce}}", "quantity": "{{$quantity}}", "price": "{{$price}}", "isIsolated": "{{$isIsolated}}", "newClientOrderId": "{{$newClientOrderId}}"}'"
Place margin order · Binance · OpenIntegrations