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/:tokenAuthentication
Header
Value
Authorization
<api_key> — Merchant API key (this endpoint is API-key only)
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 "Authorization: your_api_key"const response = await fetch(
"https://ramp-api.ivorypay.io/api/v1/offramp/minimum-amount/USDT",
{
method: "GET",
headers: {
"Authorization": "your_api_key",
},
}
);
const data = await response.json();
console.log(data);import requests
response = requests.get(
"https://ramp-api.ivorypay.io/api/v1/offramp/minimum-amount/USDT",
headers={
"Authorization": "your_api_key",
},
)
print(response.json())Example response
{
"success": true,
"message": "Query successful",
"data": {
"token": "USDT",
"minimumAmount": 5
}
}Last updated