convert
Installation
SKILL.md
Binance Convert Skill
Convert 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 |
|---|---|---|---|---|
/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 |
Related skills