binance_get_convert_pairs
Verify accessible convertible asset pairs and their min/max amounts to confirm a conversion is possible before requesting a quote.
Instructions
List the convertible asset pairs and their per-pair minimum/maximum amounts.
Calls GET /sapi/v1/convert/exchangeInfo — unauthenticated (no key needed) but
IP weight 3000 of a 12,000/min budget, so four unfiltered calls exhaust a minute.
The pair list barely changes: cache the answer and pass from_asset/to_asset to
keep the response small.
When to Use:
Before quoting, to check a pair is convertible at all and that the amount you plan to convert sits between
fromAssetMinAmountandfromAssetMaxAmount.To find what a given asset can be converted into (
from_asset="BTC").
When NOT to Use:
To get a price — that is
binance_get_convert_quote(a quote reserves a ratio).To read spot symbol filters — that is
binance_get_exchange_info; convert pairs and spot trading pairs are different lists with different rules.
Returns:
One row per pair: from → to plus the min/max amount on both legs. Markdown display is
capped at 100 pairs with a note to narrow the filter; response_format="json" carries
every row returned.
Examples: params = {"from_asset": "BTC"} params = {"from_asset": "BTC", "to_asset": "USDT"}
Error Handling:
429 means the IP weight budget is gone — wait out Retry-After rather than retrying;
this single endpoint is 3000 weight per call.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |