convert

Execute Binance Convert API requests for asset conversion workflows.

957|244|Updated Dec 30, 2025
One-click install
npx skills add https://github.com/tukuaiai/tradecat-public --skill convert-tukuaiai
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: convert
Source: https://github.com/tukuaiai/tradecat-public/tree/main/resources/agent_market_context/binance/upstream/binance-skills-hub-main/skills/binance/convert
Command: npx skills add https://github.com/tukuaiai/tradecat-public --skill convert-tukuaiai

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

It solves the problem of performing Binance Convert API operations (quote acceptance, order placement, and trade history lookup) programmatically without manual request construction.

Core Features & Use Cases

  • Binance Convert authenticated requests: Handles Convert endpoints that require an API key and secret signature.
  • Pair and asset information lookup: Fetches exchangeInfo and assetInfo to determine supported conversion pairs and precision.
  • Trade and order lifecycle access: Retrieves order status, tradeFlow history, and can place/cancel certain limit orders.

Quick Start

Ask your AI to place a Convert limit order by providing fromAsset, toAsset, limitPrice, baseAmount or quoteAmount, side, walletType, and your Binance API key and secret key.

Frequently Asked Questions about convert

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I convert assets on Binance using an authenticated API?

To convert assets on Binance via authenticated API, provide your API key and secret key to sign USER_DATA endpoints, enabling quoting conversions, order placement, and trade history retrieval with correct percent-encoded query signing.

Can I retrieve Binance Convert trade history for a specific time range?

Yes, Binance Convert trade history for a specific time range is retrieved by calling the authenticated tradeFlow endpoint, returning JSON results detailing past conversion transactions within the requested period.

How do I place a Convert limit order on Binance programmatically?

Placing a Binance Convert limit order programmatically requires supplying fromAsset, toAsset, limitPrice, baseAmount or quoteAmount, side, and walletType alongside your API key and secret key to authenticate and execute the signed trade request.

Do I need to manually sign query strings when checking Binance Convert order status?

No, manual query string signing is unnecessary for checking Binance Convert order status because the process automatically applies correct percent-encoded query signing with the required User-Agent header using your provided API key and secret key.

What Binance Convert API endpoints are available for pair and asset discovery?

Binance Convert API endpoints for pair and asset discovery include exchangeInfo and assetInfo, which fetch supported conversion pairs and determine asset precision required before quoting or placing authenticated conversion orders.

Why does my Binance Convert API request fail when I try to cancel a limit order?

Binance Convert API requests to cancel limit orders fail if the query string lacks correct percent-encoding or the required User-Agent header, or if your API key and secret key fail to properly sign the authenticated USER_DATA endpoint.