I can not find support for converting USDT to BUSD or vise versa in any python package (CCXT, python-binance...).
Asked
Active
Viewed 215 times
1 Answers
1
I have a reply.
- You need to complete a questionnaire to request for access to Binance Convert API.
- Then you just access the requests trough CCTX using :
`
exchange = ccxt.binance({'apiKey': PKEY, 'secret': SKEY})
amount = decimal.Decimal('20')
params = {'fromAsset': 'USDT', 'toAsset': 'BUSD', 'fromAmount': amount}
response = exchange.sapi_post_convert_getquote(params)
`

Ofer Zilberstein
- 65
- 1
- 5