Skip to main content

Binance

Type: binance • Category: flow • Tags: binance, trading, exchange, crypto

Description

Connect to Binance API for trading and market data

Parameters

NameTypeDescriptionRequiredDefault
api_keystringYour Binance API keyno
api_secretstringYour Binance API secretno
market_typestringMarket type: spot or futuresno"spot"
operationstringBinance API operation to performno
symbolstringTrading symbol (e.g., BTCUSDT)no
sidestringOrder sideno
order_typestringOrder typeno"MARKET"
quantitystringOrder quantityno
pricestringOrder price (required for LIMIT orders)no
time_in_forcestringTime in forceno"GTC"
order_idstringOrder ID to cancel or checkno
orig_client_order_idstringOriginal client order IDno
intervalstringKline intervalno"1h"
limitnumberNumber of results to returnno100
start_timenumberStart time (Unix timestamp in seconds)no
end_timenumberEnd time (Unix timestamp in seconds)no

Help

Binance API Connector

Connect to Binance exchange for spot and futures trading, account management, and market data retrieval.

Security Note: Your API credentials are used only for this workflow execution and are not stored.

Market Types:

  • spot: Spot trading (default)
  • futures: Futures trading

Available Operations:

Account Operations:

  • account_info: Get complete account information
  • balances: Get account balances (non-zero only)
  • positions: Get futures positions (futures only)

Trading Operations:

  • place_order: Place buy/sell orders
  • cancel_order: Cancel existing orders
  • order_status: Check order status
  • open_orders: Get all open orders
  • all_orders: Get historical orders

Market Data (Public):

  • ticker_price: Get current price for a symbol
  • klines: Get historical candlestick data
  • order_book: Get order book depth
  • recent_trades: Get recent trades
  • exchange_info: Get exchange trading rules

Examples:

  • Get BTC price: operation="ticker_price", symbol="BTCUSDT"
  • Place market buy: operation="place_order", symbol="BTCUSDT", side="BUY", order_type="MARKET", quantity="0.001"
  • Get account balances: operation="balances"
  • Get historical data: operation="klines", symbol="BTCUSDT", interval="1h", limit="100"

Required Parameters:

  • api_key: Your Binance API key
  • api_secret: Your Binance API secret
  • operation: Operation to perform

Notes:

  • All timestamps are in milliseconds
  • Futures operations require futures market type
  • Rate limits apply - use reasonable request frequencies