binance_accept_convert_quote
Execute an approved Binance convert quote to exchange assets at the quoted ratio. Accepting a quote is irreversible and moves real funds, so use only after human approval.
Instructions
Accept a convert quote and EXECUTE the conversion. This moves real funds.
Calls POST /sapi/v1/convert/acceptQuote (SIGNED, UID weight 500). The
conversion is irreversible: converting back needs a new quote at whatever ratio
the market offers then, so the round trip costs the spread twice.
Kill-switch. Refused with Error: … trading is disabled … unless the server runs
with BINANCE_ALLOW_TRADING=1. The gate lives in the HTTP client, so no tool can
bypass it. If you see that error, the operator has deliberately put the server in
read-only mode — report it, do not try to work around it.
Always price the conversion with binance_get_convert_quote first (it works even
with the kill-switch off) and have the human approve that exact quoteId and amount.
When to Use:
Immediately after a human approved the ratio in a fresh quote, before it expires.
When NOT to Use:
To "see what would happen" — that is
binance_get_convert_quote.To convert at a price that is not on offer now — use
binance_place_convert_limit_order.
Returns:
A confirmation echoing exactly what Binance returned — orderId, createTime and
orderStatus verbatim (PROCESS / ACCEPT_SUCCESS / SUCCESS / FAIL). Only SUCCESS
means the assets were exchanged; the other statuses are reported as-is with the next
step, never paraphrased as "converted".
Examples: params = {"quote_id": "12415572564"}
Error Handling:
An expired or already-used quoteId is rejected by Binance — request a new quote
rather than retrying this one. A 5xx or a timeout means the execution status is
UNKNOWN: check with binance_get_convert_order_status (by quote_id) before
accepting anything again — never blind-retry a conversion.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |