📉Get Pricing

Need help with your integration? Click here to chat with our custom GPT for instant answers.

POST /api/v1/merchant/sell/pricing

Returns a fiat quote based on the selected payout method and crypto.

Required Parameters:

payout_method: Payment method slug (e.g., skrill, bank-transfer)

crypto_currency: Cryptocurrency code (e.g., BTC, ETH)

Optional Parameters:

  • api_key: Merchant API key

  • markup: Additional merchant markup percentage

Fiat-to-Crypto Response:
  {
    "success": true,
    "data": {
      "crypto_amount": 0.00222222,
      "crypto_currency": "BTC",
      "crypto_unit_price": 45000,
      "network_fee": 0,
      "fiat_amount_incl_fees": 100.00,
      "fiat_amount_excl_fees": 96.35,
      "fiat_currency": "USD"
    }
  }

  Crypto-to-Fiat Response:
  {
    "success": true,
    "data": {
      "crypto_amount": 0.1,
      "crypto_currency": "ETH",
      "crypto_unit_price": 2500,
      "network_fee": 0,
      "fiat_amount_incl_fees": 257.25,
      "fiat_amount_excl_fees": 250.00,
      "fiat_currency": "EUR"
    }
  }

Last updated