Install
openclaw skills install @torchesfrms/binance-exchangeFetch real-time prices, 24h stats, K-line charts, and market info for Binance spot trading pairs using the Binance API via proxy.
openclaw skills install @torchesfrms/binance-exchangeQuery Binance spot exchange data via API. Requires proxy for network access.
Proxy Configuration:
# Uses system proxy
export HTTP_PROXY="http://127.0.0.1:1082"
export HTTPS_PROXY="http://127.0.0.1:1082"
Note: Binance API may be restricted in certain regions. Use a proxy node in allowed regions (HK/SG/JP/UK/DE).
| Endpoint | Use Case |
|---|---|
/api/v3/ticker/price | Real-time prices |
/api/v3/ticker/24hr | 24h statistics |
/api/v3/klines | K-line/candlestick data |
/api/v3/exchangeInfo | Trading rules & symbols |
# Single symbol
./scripts/price.sh BTCUSDT
# Multiple symbols
./scripts/price.sh BTCUSDT ETHUSDT BNBUSDT
# Single symbol
./scripts/change.sh BTCUSDT
# Top gainers (requires custom processing)
./scripts/gainers.sh
# BTC 1hour K-line (100 candles)
./scripts/kline.sh BTCUSDT 1h 100
# ETH 4hour K-line
./scripts/kline.sh ETHUSDT 4h 50
# Get basic price
./scripts/token-info.sh BTCUSDT
# Get 24h statistics
./scripts/token-info.sh BTCUSDT stats
Returns:
# Search USDT pairs
./scripts/search.sh USDT
| Data | Command |
|---|---|
| BTC price | ./scripts/price.sh BTCUSDT |
| 24h stats | ./scripts/token-info.sh BTCUSDT stats |
| K-line | ./scripts/kline.sh BTCUSDT 1h 100 |