> ## Documentation Index
> Fetch the complete documentation index at: https://docs.brale.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Stablecoin to Stablecoin (Swap)

> Swap between stablecoins and move stablecoins across blockchains with burn and mint operations.

## 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/accounts/account_id/transfers`

```json title="Request" theme={null}
{
  "amount": {
    "value": "100",
    "currency": "USD"
  },
  "source": {
    "address_id": "2VcUIonJeVQzFoBuC7LdFT0dRe4",
    "value_type": "YSBC",
    "transfer_type": "solana"
  },
  "destination": {
    "address_id": "2VcUIjvaXjMUVAWLT8R9LzEUDed",
    "value_type": "YSBC",
    "transfer_type": "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/accounts/account_id/transfers`

```json title="Request" theme={null}
{
  "amount": {
    "value": "100",
    "currency": "USD"
  },
  "sourceAddress": {
    "addressId": "2VcUIonJeVQzFoBuC7LdFT0dRe4",
    "valueType": "USDC",
    "transferType": "solana"
  },
  "destinationAddress": {
    "addressId": "2VcUIonJeVQzFoBuC7LdFT0dRe4",
    "valueType": "YSBC",
    "transferType": "solana"
  }
}
```
