Before creating Ramp Order
GET /supported-currencies
Fetch list of all supported currencies enabled for your MID.
{
"status": "success",
"total": 1,
"pages": 1,
"data": [
{
"currency": "EUR",
"minAmount": 25,
"maxAmount": 50000,
"logoUrl": "https://common-fiat-logos.s3.ap-southeast-1.amazonaws.com/eur.svg"
}
]
}
GET /config/list-tokens
Fetch list of all supported tokens enabled for your MID.
{
"data": [
{
"symbol": "USDT",
"cryptoTicker": "USDT",
"network": "Ethereum",
"logo": "https://crypto-token-logos.s3.ap-southeast-1.amazonaws.com/usdt.svg"
},
{
"symbol": "USDT",
"cryptoTicker": "USDTTRC20",
"network": "Tron",
"logo": "https://crypto-token-logos.s3.ap-southeast-1.amazonaws.com/usdttrc20.svg"
},
{
"symbol": "USDT",
"cryptoTicker": "USDTSOL",
"network": "Solana",
"logo": "https://crypto-token-logos.s3.ap-southeast-1.amazonaws.com/usdtsol.svg"
},
{
"symbol": "ETH",
"cryptoTicker": "ETHARB",
"network": "Arbitrum",
"logo": "https://crypto-token-logos.s3.ap-southeast-1.amazonaws.com/etharb.svg"
}
]
}
GET /payment-methods
Fetch list of all supported payment methods enabled for your MID.
{
"paymentMethods": [
{
"name": "Credit Card",
"paymentCode": "credit_card",
"minAmount": 25,
"maxAmount": 50000,
"logoUrl": "https://common-payment-methods-logo.s3.ap-southeast-1.amazonaws.com/card.svg",
"paymentType": "card"
},
{
"name": "Debit Card",
"paymentCode": "debit_card",
"minAmount": 25,
"maxAmount": 50000,
"logoUrl": "https://common-payment-methods-logo.s3.ap-southeast-1.amazonaws.com/card.svg",
"paymentType": "card"
},
{
"name": "Sepa Open Banking",
"paymentCode": "sepa_pull",
"minAmount": 25,
"maxAmount": 5000,
"logoUrl": "https://common-payment-methods-logo.s3.ap-southeast-1.amazonaws.com/SepaInstant.svg",
"paymentType": "bank_transfer"
}
],
"total": 5,
"pages": 1
}
GET /buy/quotes
Fetch the exchange rate for the payin fiat currency equivalent to stable currency (USDT/USDC) using this
{
"message": {
"success": true,
"data": {
"receiveAmount": 27.0710,
"cryptoPrice": 35.4182,
"processingFee": 35,
"networkFee": 6.19,
"sentAmount": 1000,
"totalFee": 41.19,
"receiveFiatAmount": 958.81,
"minLimit": 177.09,
"maxLimit": 150000
}
}
}
Updated 4 months ago