Binance

Type:
binance• Category:flow• Tags:binance,trading,exchange,crypto
Description
Connect to Binance API for trading and market data
Parameters
| Name | Type | Description | Required | Default |
|---|---|---|---|---|
api_key | string | Your Binance API key | no | |
api_secret | string | Your Binance API secret | no | |
market_type | string | Market type: spot or futures | no | "spot" |
operation | string | Binance API operation to perform | no | |
symbol | string | Trading symbol (e.g., BTCUSDT) | no | |
side | string | Order side | no | |
order_type | string | Order type | no | "MARKET" |
quantity | string | Order quantity | no | |
price | string | Order price (required for LIMIT orders) | no | |
time_in_force | string | Time in force | no | "GTC" |
order_id | string | Order ID to cancel or check | no | |
orig_client_order_id | string | Original client order ID | no | |
interval | string | Kline interval | no | "1h" |
limit | number | Number of results to return | no | 100 |
start_time | number | Start time (Unix timestamp in seconds) | no | |
end_time | number | End 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