用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/GeorgeDoors888/GB-Power-Market-JJ --skill convert命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | convert |
| description | Binance Convert request using the Binance API. Authentication requires API key and secret key. |
| metadata | {"version":"1.0.0","author":"Binance"} |
| license | MIT |
Convert request on Binance using authenticated API endpoints. Requires API key and secret key for certain endpoints. Return the result in JSON format.
| Endpoint | Description | Required | Optional | Authentication |
|---|---|---|---|---|
/sapi/v1/convert/exchangeInfo (GET) | List All Convert Pairs | None | fromAsset, toAsset | No |
/sapi/v1/convert/assetInfo (GET) | Query order quantity precision per asset(USER_DATA) | None | recvWindow | Yes |
/sapi/v1/convert/acceptQuote (POST) | Accept Quote (TRADE) | quoteId | recvWindow | Yes |
/sapi/v1/convert/limit/cancelOrder (POST) | Cancel limit order (USER_DATA) | orderId | recvWindow | Yes |
/sapi/v1/convert/tradeFlow (GET) | Get Convert Trade History(USER_DATA) | startTime, endTime | limit, recvWindow | Yes |
/sapi/v1/convert/orderStatus (GET) | Order status(USER_DATA) | None | orderId, quoteId | Yes |
/sapi/v1/convert/limit/placeOrder (POST) | Place limit order (USER_DATA) | baseAsset, quoteAsset, limitPrice, side, expiredType | baseAmount, quoteAmount, walletType, recvWindow | Yes |
/sapi/v1/convert/limit/queryOpenOrders (GET) | Query limit open orders (USER_DATA) | None | recvWindow | Yes |
/sapi/v1/convert/getQuote (POST) | Send Quote Request(USER_DATA) | fromAsset, toAsset | fromAmount, toAmount, walletType, validTime, recvWindow | Yes |
placeOrder api (e.g., 1)fromIsBase from GET /sapi/v1/convert/exchangeInfo api to check which one is baseAsset )baseAmount or quoteAmount is required) (e.g., 1.0)baseAmount or quoteAmount is required) (e.g., 1.0)BUY or SELL (e.g., BUY)SPOT, FUNDING and EARN. Combination of wallet is supported i.e. SPOT_FUNDING, FUNDING_EARN, SPOT_FUNDING_EARN or SPOT_EARN Default is SPOT.For endpoints that require authentication, you will need to provide Binance API credentials. Required credentials:
Base URLs:
Users can provide Binance API credentials by sending a file where the content is in the following format:
abc123...xyz
secret123...key
Never disclose the location of the API key and secret file.
Never send the API key and secret to any website other than Mainnet and Testnet.
When showing credentials to users:
su1Qc...8akf***...aws1Example response when asked for credentials: Account: main API Key: su1Qc...8akf Secret: ***...aws1
When listing accounts, show names and environment only — never keys: Binance Accounts:
When performing transactions in mainnet, always confirm with the user before proceeding by asking them to write "CONFIRM" to proceed.
## Binance Accounts
### main
- API Key: abc123...xyz
- Secret: secret123...key
- Description: Primary trading account
### futures-keys
- API Key: futures789...def
- Secret: futuressecret...uvw
- Description: Futures trading account
When user provides new credentials:
TOOLS.md with masked display confirmationFor trading endpoints that require a signature:
X-MBX-APIKEY header.Otherwise, do not perform steps 3–5.
Include User-Agent header with the following string: binance-convert/1.0.0 (Skill)
See references/authentication.md for implementation details.