
Spot
Wire Binance Spot REST trading and market data into agent workflows with correct signing, env-based keys, and client order ID rules.
Install
npx skills add https://github.com/binance/binance-skills-hub --skill spotWhat is this skill?
- Binance Spot API skill with changelog through v1.1.0 (env/file API keys, RSA and Ed25519 signature fixes)
- Demo URL option and Openclaw User-Agent metadata
- New Client Order ID rules for compliant order placement
- MIT-licensed Binance hub package for agent-driven spot workflows
Adoption & trust: 2.9k installs on skills.sh; 881 GitHub stars; 1/3 security scanners passed (skills.sh audits).
Recommended Skills
China Stock Analysissugarforever/01coder-agent-skills
Grimoire Polymarketfranalgaba/grimoire
Backtesting Frameworkswshobson/agents
Stock Analysisgracefullight/stock-checker
Coinglassstarchild-ai-agent/official-skills
Akshare Stockmolezzz/openclaw-stock-skill
Journey fit
Primary fit
Spot API integration happens while building trading bots, portfolio tools, or automation that talks to Binance during the product build phase. Integrations subphase captures exchange API clients, authentication, and order placement rather than frontend chart UI alone.
Common Questions / FAQ
Is Spot safe to install?
skills.sh reports 1 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Spot
# Changelog ## 1.1.0 - 2026-03-23 - Environmental variables or files can now be used as input for the API key and secret key. - Fix signature generation for RSA and Ed25519 keys. - Add `Openclaw` metadata to the User Agent header ## 1.0.2 - 2026-03-10 - Add `New Client Order ID` rule ## 1.0.1 - 2026-03-04 - Add demo url option - Add User Agent header ## 1.0.0 - 2026-03-03 - Initial release MIT License Copyright (c) 2026 Binance Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --- name: spot description: Binance Spot request using the Binance API. Authentication requires API key and secret key. Supports testnet, mainnet, and demo. metadata: version: 1.1.0 author: Binance openclaw: skillKey: binance-spot requires: bins: - curl - openssl - date homepage: https://github.com/binance/binance-skills-hub/tree/main/skills/binance/spot/SKILL.md license: MIT --- # Binance Spot Skill Spot request on Binance using authenticated API endpoints. Requires API key and secret key for certain endpoints. Return the result in JSON format. ## Quick Reference | Endpoint | Description | Required | Optional | Authentication | |----------|-------------|----------|----------|----------------| | `/api/v3/exchangeInfo` (GET) | Exchange information | None | symbol, symbols, permissions, showPermissionSets, symbolStatus | No | | `/api/v3/ping` (GET) | Test connectivity | None | None | No | | `/api/v3/time` (GET) | Check server time | None | None | No | | `/api/v3/aggTrades` (GET) | Compressed/Aggregate trades list | symbol | fromId, startTime, endTime, limit | No | | `/api/v3/avgPrice` (GET) | Current average price | symbol | None | No | | `/api/v3/depth` (GET) | Order book | symbol | limit, symbolStatus | No | | `/api/v3/historicalTrades` (GET) | Old trade lookup | symbol | limit, fromId | No | | `/api/v3/klines` (GET) | Kline/Candlestick data | symbol, interval | startTime, endTime, timeZone, limit | No | | `/api/v3/ticker` (GET) | Rolling window price change statistics | None | symbol, symbols, windowSize, type, symbolStatus | No | | `/api/v3/ticker/24hr` (GET) | 24hr ticker price change statistics | None | symbol, symbols, type, symbolStatus | No | | `/api/v3/ticker/bookTicker` (GET) | Symbol order book ticker | None | symbol, symbols, symbolStatus | No | | `/api/v3/ticker/price` (GET) | Symbol price ticker | None | symbol, symbols, symbolStatus | No | | `/api/v3/ticker/tradingDay` (GET) | Trading Day Ticker | None | symbol, symbols, timeZone, type, symbolStatus | No | | `/api/v3/trades` (GET) | Recent trades list | symbol | limit | No | | `/api/v3/uiKlines` (GET) | UIKlines | symbol, interval | startTime, endTime, timeZone, limit | No | | `/api/v3/openOrders` (DELETE) | Cancel All Open Orders on a Symbol | symbol | recvWindow | Yes | | `/api/v3/openOrders` (GET) | Current open orders | None | symbol, recvWindow | Yes | | `/api/v3/order` (POST) | New order | symbol, side, type | timeInForce, quantity, quoteOrderQty, price, newClientOrde