Celeriz
  1. OFFRAMP
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. OFFRAMP

Quote

POST
/onramp-seb/api/v2/whiteLabel/offramp/quote
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/onramp-seb/api/v2/whiteLabel/offramp/quote' \
--data-urlencode 'fromCurrency=USDC' \
--data-urlencode 'toCurrency=INR' \
--data-urlencode 'fromAmount=50' \
--data-urlencode 'chain=base'
Response Response Example
200 - 200 OK
{
    "status": 1,
    "code": 200,
    "data": {
        "fromCurrency": "usdc",
        "toCurrency": "INR",
        "fromAmount": "20",
        "toAmount": "1667.7",
        "rate": "84.6196",
        "fees": [
            {
                "type": "fiat",
                "onrampFee": "4.23",
                "gatewayFee": "3.54",
                "tdsFee": "16.92"
            }
        ]
    }
}

Request

Body Params application/x-www-form-urlencoded

Responses

🟢200200 OK
application/json
Body

🟠400400 Unsupported Country
🟠400400 Missing Parameters
Modified at 2025-07-17 16:42:00
Previous
Get all transaction
Next
Create transaction
Built with