Quote

Returns an offramp Quote

This endpoint will return an deposit address for offramp

Create an Offramp Quote

POST https://integration.coinmena.com/onramp-bank/api/v1/offramp/quote

Request Body

NameTypeDescription

fromCurrency*

String

Base currency of the trading pair E.g. of fromCurrency:

USDT

toCurrency*

String

Quote currency of the trading pair

E.g. of toCurrency: AED

fromAmount*

String

Crypto quantity user wants to sell

{
    "status": 1,
    "code": 200,
    "data": {
        "fromCurrency": "USDT",
        "toCurrency": "AED",
        "toAmount": "20",
        "fromAmount": "",
        "fees": [
            {
                "type": "fiat",
                "onrampFee": 3,
                "clientFee": 0,
                "gatewayFee": 0,
                "gasFee": 0
            }
        ]
    }
}
{
    "status": 1,
    "code": 200,
    "data": {
        "fromCurrency": "AED",
        "toCurrency": "USDC",
        "toAmount": "1938.65",
        "fromAmount": "7213",
        "rate": "3.72",
        "fees": [
            {
                "type": "fiat",
                "onrampFee": "18.95",
                "clientFee": 0,
                "gatewayFee": 0,
                "gasFee": "3.72"
            }
        ]
    }
}

Last updated