Get Minimum Off-Ramp Amount

Get the minimum off-ramp amount for a crypto token.

Returns the minimum crypto amount required to initiate an off-ramp transaction for a given token.

Endpoint

GET /v1/offramp/minimum-amount/:token

Authentication

Header
Value

x-api-key

Your API key

Path parameters

Parameter
Type
Description

token

string

Crypto token code (e.g., USDT, USDC)

Example request

curl -X GET https://ramp-api.ivorypay.io/api/v1/offramp/minimum-amount/USDT \
  -H "x-api-key: your_api_key"

Example response

{
  "statusCode": 200,
  "success": true,
  "message": "Query successful",
  "data": {
    "token": "USDT",
    "minimumAmount": 5
  }
}

Last updated