Log in

Stablecoin to Stablecoin (Swap)

Brale makes it easy to swap between stablecoins, and to swap stablecoins between blockchains. See Supported Stablecoins and Blockchains for the full list.


Swap Your Stablecoin Cross Chain

Stablecoins are issued natively on each chain and can be swapped 1:1 between chains at any time. Stablecoins are burned on the source chain, and minted on the destination chain.

Swap from Solana to Base

POST https://api.brale.xyz/transfer

{
	"amount": "100", 
	"sourceAddress": {
		"addressId": "a1b2c3d4-5678-90ab-cdef-1234567890ab", 
		"valueType": "YSBC", 
		"transferType": "solana"
	}, 
	"destinationAddress": {
		"addressId": "b2c3d4e5-6789-01ab-cdef-2345678901bc", 
		"valueType": "YSBC", 
		"transferType": "base" 
	}
}

Swap between Your Stablecoin and USDC

Swap between Brale-issued stablecoins, USDC, and Paxos-issued stablecoins 1:1 without slippage.

POST https://api.brale.xyz/transfer

{
	"amount": "100", 
	"sourceAddress": {
		"addressId": "a1b2c3d4-5678-90ab-cdef-1234567890ab", 
		"valueType": "USDC", 
		"transferType": "solana"
	}, 
	"destinationAddress": {
		"addressId": "b2c3d4e5-6789-01ab-cdef-2345678901bc", 
		"valueType": "YSBC", 
		"transferType": "solan" 
	}
}