Quote

Returns an onramp Quote

This endpoint returns an accurate price estimate for the requested amount for the coin/token (fiat to crypto)

Create an Onramp Quote

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

Request Body

{
    "status": 1,
    "code": 200,
    "data": {
        "fromCurrency": "AED",
        "toCurrency": "USDT",
        "toAmount": 13.08,
        "fromAmount": "60",
        "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