⌨ī¸APIs

Unsupported countries

https://api.mtpelerin.com/countries/forbidden (GET)

Supported chains and assets

https://api.mtpelerin.com/currencies/tokens (GET)

Fees and exchange conversion result

https://api.mtpelerin.com/currency_rates/convert (POST)

ParameterExample valueDescription

sourceCurrency

CHF

One of our supported fiat or crypto Chains and currencies.

destCurrency

BTC

One of our supported fiat or crypto Chains and currencies.

sourceAmount

100

Input amount.

sourceNetwork

fiat

One of our supported chains (see Tokens endpoint above), or 'fiat'.

destNetwork

bitcoin_mainnet

One of our supported chains (see Tokens endpoint above), or 'fiat'.

isCardPayment

false

'true' or 'false' if the payment will be made by card (only valid if sourceNetwork is fiat, ignored otherwise)

Response example:

{
  "fees": {
    "networkFee": "2.2605",
    "fixFee": 0
  },
  "sourceCurrency": "CHF",
  "destCurrency": "BTC",
  "sourceNetwork": "fiat",
  "destNetwork": "bitcoin_mainnet",
  "sourceAmount": 100,
  "destAmount": "0.00398660113390708486776"
}

"destAmount" is the net final amount, which includes all applicable fees.

Last updated