Sign in

Test new order

documented

Test submitting a new order without executing it (SOR/Signature scenarios apply).

POST /api/v3/order/testTradingno 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/api/v3/order/test" \
  -X POST \
  -H "X-MBX-APIKEY: {{BINANCE_API_KEY}}" \
  -H "Content-Type: application/x-www-form-urlencoded" \
  -H "Accept: application/json" \
  -d "symbol={{$symbol}}&side={{$side}}&type={{$order_type}}&timeInForce={{$time_in_force}}&quantity={{$quantity}}&price={{$price}}&recvWindow={{$recv_window}}&timestamp={{$timestamp}}&newClientOrderId={{$new_client_order_id}}&stopPrice={{$stop_price}}&icebergQty={{$iceberg_qty}}&signature={{$signature}}"
Test new order · Binance · OpenIntegrations