OxaPay Docs
Legacy
Legacy
  • Introduction
  • Getting Started
  • Integrations
    • Payment Links
    • Donations
    • Merchant API
    • Payout API
    • Plugins
      • WooCommerce
      • WISECP
      • Clientexec
      • Blesta
      • WHMCS
      • PrestaShop
      • Easy Digital Downloads
      • Paid Memberships Pro
      • Gravity Forms
      • Restrict Content Pro
    • Merchant and Payout Service with API
  • API Reference
    • Creating an Invoice
    • Creating White-Label Payment
    • Creating Static Wallet
    • Revoking Static Wallet
    • Static Wallets List
    • Payment Information
    • Payment History
    • Accepted Coins
    • Price
    • Creating Payout
    • Payout Information
    • Payout History
    • Account Balance
    • Exchange Rate
    • Exchange Calculate
    • Exchange Pairs
    • Exchange Request
    • Exchange History
    • Supported Currencies
    • Supported Fiat Currencies
    • Supported Networks
    • System Status
    • Result code table
    • Merchant status table
    • Payout status table
  • Webhook
  • Use Cases
  • Troubleshooting
Powered by GitBook
On this page
  1. API Reference

Exchange Pairs

Easily access a comprehensive list of exchangeable cryptocurrencies along with their minimum conversion amounts. This resource reveals the available options for the fromCurrency and toCurrency fields when conducting cryptocurrency conversions. Whether you're exchanging Bitcoin for Tether or Tether for Litecoin, this list provides valuable insights into the supported pairs and ensures seamless transactions with the specified minimum conversion amount.

POST https://api.oxapay.com/exchange/pairs

{
  "result": integer, // The result code indicates the success or failure of the request.
  "message": string, // A message providing additional information about the result.
  "pairs": array of Object // An array containing the supported exchange pairs in OxaPay. Each currency is represented as a object with fromCurrency, toCurrency, minAmount.
}

Sample output

{
    "result": 100,
    "message": "Successful operation",
    "pairs": [
        { "fromCurrency": "BTC", "toCurrency": "USDT", "minAmount": "0.0003" }, 
        { "fromCurrency": "ETH", "toCurrency": "USDT", "minAmount": "0.005" }, 
        { "fromCurrency": "BNB", "toCurrency": "USDT", "minAmount": "0.01" }, 
        { "fromCurrency": "LTC", "toCurrency": "USDT", "minAmount": "0.05" }, 
        { "fromCurrency": "TRX", "toCurrency": "USDT", "minAmount": "1" }, 
        { "fromCurrency": "DOGE", "toCurrency": "USDT", "minAmount": "1" }, 
        { "fromCurrency": "MATIC", "toCurrency": "USDT", "minAmount": "0.1" }, 
        { "fromCurrency": "TON", "toCurrency": "USDT", "minAmount": "0.1" }, 
        { "fromCurrency": "XMR", "toCurrency": "USDT", "minAmount": "0.01" }, 
        { "fromCurrency": "DGB", "toCurrency": "USDT", "minAmount": "50" }, 
        { "fromCurrency": "BCH", "toCurrency": "USDT", "minAmount": "0.005" }, 
        { "fromCurrency": "SHIB", "toCurrency": "USDT", "minAmount": "100000" }, 
        { "fromCurrency": "SOL", "toCurrency": "USDT", "minAmount": "0.008" }, 
        { "fromCurrency": "USDT", "toCurrency": "BTC", "minAmount": "1" }, 
        { "fromCurrency": "USDT", "toCurrency": "ETH", "minAmount": "1" }, 
        { "fromCurrency": "USDT", "toCurrency": "BNB", "minAmount": "1" }, 
        { "fromCurrency": "USDT", "toCurrency": "LTC", "minAmount": "1" }, 
        { "fromCurrency": "USDT", "toCurrency": "TRX", "minAmount": "1" }, 
        { "fromCurrency": "USDT", "toCurrency": "DOGE", "minAmount": "1" }, 
        { "fromCurrency": "USDT", "toCurrency": "MATIC", "minAmount": "1" }, 
        { "fromCurrency": "USDT", "toCurrency": "TON", "minAmount": "1" }, 
        { "fromCurrency": "USDT", "toCurrency": "XMR", "minAmount": "1" }, 
        { "fromCurrency": "USDT", "toCurrency": "DGB", "minAmount": "1" }, 
        { "fromCurrency": "USDT", "toCurrency": "BCH", "minAmount": "1" }, 
        { "fromCurrency": "USDT", "toCurrency": "SHIB", "minAmount": "1" }, 
        { "fromCurrency": "USDT", "toCurrency": "SOL", "minAmount": "1" }
    ]
}
PreviousExchange CalculateNextExchange Request

Last updated 12 months ago