💥
Stablecoins Swap
Swap Stablecoins in your lazerpay account using our APIs
You can make Stablecoins swaps from one coin to another directly from the Lazerpay dashboard or using our Swaps API endpoint

Swap stablecoins from Dashboard
post
https://api.lazerpay.engineering/api/v1/swap/crypto
curl --location --request POST 'https://api.lazerpay.engineering/api/v1/swap/crypto' \
--header 'Authorization: Bearer sk_test_hxDjjhMiDsVo16hZ0tuIL51PwoB98HGeqAoddUxQ0RaF7Q8kfK' \
--data-raw '{
"from_coin": "USDT",
"to_coin": "BUSD",
"amount": 0.01,
"blockchain": "Binance Smart Chain"
}'
- The
blockchain
field must be"Binance Smart Chain"
. - The
from_coin
field must either be "BUSD", "DAI", "USDT", or "USDC". - The
to_coin
field must either be "BUSD", "DAI", "USDT", or "USDC". - Also
to_coin
andfrom_coin
cannot be the same
we only support the Binance smart chain for swaps. we will add more networks in the future.
Last modified 8mo ago