Celeriz
  1. ONRAMP
Celeriz
  • USER
    • Coins
      GET
    • Chains
      GET
    • Fiat
      GET
  • KYC
    • Get KYC url
      POST
    • Check KYC status
      POST
    • KYC requirements
      POST
  • BANK
    • Add fiat account API
      POST
    • List fiat accounts
      POST
  • ONRAMP
    • Quote
      POST
    • Create transaction
      POST
    • Get transaction
      POST
    • Get user all transaction
      POST
    • Get all transaction
      POST
  • OFFRAMP
    • Quote
      POST
    • Create transaction
      POST
    • Get transaction
      POST
    • Get user all Transaction
      POST
    • Get all Transaction
      POST
  • Virtual Accounts
  • Cards
  • SetWebhookUrl
    POST
  1. ONRAMP

Quote

POST
/api/v1/onramp/quote
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v1/onramp/quote' \
--header 'x-api-key;' \
--data-urlencode 'fromCurrency=INR' \
--data-urlencode 'toCurrency=USDT' \
--data-urlencode 'fromAmount=1000' \
--data-urlencode 'chain=matic20' \
--data-urlencode 'paymentMethodType=UPI'
Response Response Example
200 - 200 OK (INDIA)
{
    "status": 1,
    "code": 200,
    "data": {
        "fromCurrency": "INR",
        "toCurrency": "USDT",
        "toAmount": "10.84",
        "fromAmount": "1000",
        "rate": "88",
        "fees": [
            {
                "type": "fiat",
                "onrampFee": "2.5",
                "clientFee": 0,
                "gatewayFee": 0,
                "gasFee": "44"
            }
        ]
    }
}

Request

Header Params

Body Params application/x-www-form-urlencoded

Responses

🟢200200 OK (INDIA)
application/json
Body

🟢200200 OK (AED)
🟠400400 Missing Parameters
Modified at 2025-07-18 22:21:41
Previous
ONRAMP
Next
Create transaction
Built with