Stablecoin Conversion

Convert funds between stablecoins and fiat currencies.

Endpoint

POST /api/transfers/conversion

Request Body

ParameterTypeRequiredDescription
from_currencystringYesSource currency code
to_currencystringYesTarget currency code
amountnumberYesAmount to convert
from_wallet_idstringYesSource wallet identifier
to_wallet_idstringYesDestination wallet identifier

Response

Returns the conversion object.
{
  "id": "conversion_123456789",
  "type": "currency_conversion",
  "from_currency": "USD",
  "to_currency": "USDC",
  "amount": 100.00,
  "converted_amount": 99.95,
  "exchange_rate": 0.9995,
  "from_wallet_id": "wallet_123456789",
  "to_wallet_id": "wallet_987654321",
  "status": "completed",
  "created_at": "2023-01-01T00:00:00Z"
}