chart-lineSpot Trading

Authenticated Binance spot execution with confirmation gates and testnet defaults.

API key required: Yes

Spot Trading lets DragonClaw place, cancel, and inspect Binance spot orders.

Setup

  1. Create a Binance API key.

  2. Enable Read and Spot Trading.

  3. Restrict the key to trusted IPs only.

  4. Never enable withdrawal permissions.

  5. Add your key and secret to the runtime.

BINANCE_API_KEY=your-key
BINANCE_API_SECRET=your-secret

Testnet first

binance:
  testnet: true

You must explicitly switch to false for mainnet.

Example prompts

  • BNB什么价格?

  • 在 600 USDT 的价格挂单买 0.1 BNB

  • 我有哪些未成交的挂单?

  • 取消 BNB 的那个挂单

Safety mechanisms

  1. Confirmation before execution

  2. Testnet by default

  3. No withdrawal support

  4. Signed requests with HMAC-SHA256

  5. IP restriction on the Binance key

Available operations

  • Get price

  • View balances

  • Place orders

  • Cancel orders

  • Check open orders

  • Query order status

  • View trade history

Last updated