Testing: Examples use the staging host
https://api.anchorage-staging.com and "USD_R" for USD-side legs. In production, use https://api.anchorage.com and "USD".Start here
- Mint — Convert USD into a stablecoin. See Mint.
- Redeem (burn) — Convert a stablecoin back to USD. See Redeem.
- Bridge — Move a stablecoin between chains. See Bridge across chains.
The mental model
All three operations call the same endpoint,POST /v2/stablecoins/conversion. The sourceAssetType and destinationAssetType you pass set what happens:
- Mint converts USD into a stablecoin (
sourceAssetType: USD,destinationAssetType: <stablecoin>). - Redeem (burn) converts a stablecoin back to USD (
sourceAssetType: <stablecoin>,destinationAssetType: USD). - Bridge moves a stablecoin between chains—
sourceAssetTypeanddestinationAssetTypeare the same stablecoin on different chains (for example,USDX_BSC_T→USDX_HOODI). Internally, a bridge runs a burn on the source chain and a mint on the destination chain through a shared reserve.
For the full comparison and the request fields they share, see Convert stablecoins.
Action availability
Before you convert: prerequisites
Identify the wallets and asset types involved, then confirm the API key has the right permission and authentication. See Set up.Stablecoin conversion and history endpoints require only the
Api-Access-Key header—no Api-Signature or Api-Timestamp.Related
- Convert stablecoins — How mint, redeem, and bridge differ, and the request fields they share.
- Track conversion status — Query conversion history and the transactions endpoint.
- Client stablecoins guide — The web dashboard and iOS stablecoin experience.