Convert from Balance to Balance
A conversion is a transfer of one Crypto Asset to another Crypto Asset within the Busha Platform. A Crypto → Crypto transfer.
A Conversion happening within your Busha Account, however, is still a transfer. All transfers are created with quotes, hence a conversion starts with a conversion quote.
Conversion StepsCopied!
Step 1: Create Quote
Create a quote with source_currency
and target_currency
representing the source asset and destination asset, and set one of source_amount
and target_amount
curl -i -X POST \
https://api.busha.co/v1/quotes \
-H 'Authorization: Bearer YOUR_SECRET_TOKEN' \
-H 'Content-Type: application/json' \
-H 'X-BU-PROFILE-ID: BUS_YOK8tp5Zga01qOKEsqp07' \
-d '{
"source_currency": "USDT",
"target_currency": "BTC",
"source_amount": "20"
}'
Step 2: Create a Transfer
Get a quote ID from the response of step one above and create a new transfer:
curl -i -X POST \
https://api.busha.co/v1/transfers \
-H 'Authorization: Bearer YOUR_SECRET_TOKEN' \
-H 'Content-Type: application/json' \
-d '{
"quote_id": "QUO_Nm2EBRxmuHGdTyGnVNDUt",
}'
Step 3: Confirm Transfer
Since this is a conversion transfer, the transaction is typically immediately processed.
To confirm the status of the transaction make a request to the Get Transfer Endpoint:
curl -i -X GET \
https://api.busha.co/v1/transfers/TRF_oBoehqd2KVt1wcadB8wz5 \
-H 'Authorization: Bearer YOUR_SECRET_TOKEN'