Building Blocks

Exchange

White label crypto and fiat exchange infrastructure with multi-currency vIBANs, liquidity, and extensive crypto options.

Crypto & fiat exchange
Multi-currency vIBANs (USD, EUR, GBP)
Extensive crypto options
Cross-chain swap integrated
Competitive FX rates
Chat with the team

Crypto & Fiat

Exchange between crypto and fiat

vIBANs

USD, EUR, GBP virtual IBANs

Cross-Chain

Integrated cross-chain swap

Secure

Enterprise-grade security

Exchange API

Convert between crypto and fiat currencies and retrieve deposit addresses.

Crypto to Quantum Wallet Transfer
POST
// Convert crypto to fiat in quantum wallet
const response = await fetch(
  'https://api.hoppa.global/api/v2/transfers/crypto-to-quantum-transfer',
  {
    method: 'POST',
    headers: {
      'x-api-key': 'YOUR_API_KEY',
      'Content-Type': 'application/json'
    },
    body: JSON.stringify({
      UserId: '{userId}',
      sourceCurrency: 'USDC',
      amount: 100,
      destinationCurrency: 'USD'
    })
  }
);
// Response
{
  "Success": true,
  "Details": {
    "SourceCurrency": "USDC",
    "DestinationCurrency": "USD",
    "Amount": 100,
    "Status": "completed",
    "RequiresExchange": true,
    "ExchangeRate": 1.0001
  }
}
Get Crypto Deposit Addresses
GET
// Get user's crypto deposit addresses
const response = await fetch(
  'https://api.hoppa.global/api/v2/users/{userId}/crypto-addresses',
  {
    method: 'GET',
    headers: {
      'x-api-key': 'YOUR_API_KEY'
    }
  }
);
// Response
{
  "UserId": 1,
  "Addresses": [
    {
      "Address": "0x1a2b...3c4d",
      "Currency": "USDC",
      "Chain": "Ethereum",
      "Network": "ERC-20",
      "IsActive": true,
      "CreatedAt": "2026-04-09T12:00:00Z"
    },
    {
      "Address": "T1a2b...3c4d",
      "Currency": "USDC",
      "Chain": "Tron",
      "Network": "TRC-20",
      "IsActive": true,
      "CreatedAt": "2026-04-09T12:00:00Z"
    }
  ]
}

Launch exchange services

Add crypto and fiat exchange capabilities to your platform.

Chat with the team