πŸ“‰Get Current Price

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.

Request Data:

{
    "payout_method": "skrill",
    "crypto_currency": "ETH",
    "fiat_amount": 500,
    "fiat_currency": "EUR",
    "api_key": ""
  }

Request Definition:

  • payout_method: Payment method slug (e.g., skrill, bank-transfer). For the full list of supported methods, see here.

  • crypto_currency: Cryptocurrency code (e.g., BTC, ETH). For the full list of supported currencies, see here.

  • fiat_amount: Fiat amount being sold.

  • fiat_currency: Fiat currency being sold.

Optional:

  • api_key: The merchant's public key. Identifies the requesting merchant.

Response Data:

Response Definition:

  • crypto_amount: Amount of crypto the user receives.

  • crypto_currency: The crypto being sold (e.g., "ETH").

  • crypto_unit_price: Price of 1 crypto unit in fiat_currency (EUR).

  • network_fee: Blockchain fee in crypto (0 if not applied).

  • fiat_amount_incl_fees: Total fiat incl. fees (EUR).

  • fiat_amount_excl_fees: Fiat amount before fees (EUR).

  • fiat_amount_incl_fees_local: Same as above, in local fiat (EUR here).

  • fiat_amount_excl_fees_local: Same as above, excl. fees, in local fiat (EUR here).

  • fiat_currency: User’s fiat currency (also the base currency here).

  • markup_fiat_value: Merchant-added markup in fiat.

    • Merchants can add a markup via dashboard.swapped.com > Settings > Affiliate Fee.

    • Only the workspace owner can configure this.

  • processing_fee: Processing fee in fiat (EUR).

Last updated