For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get Minimum On-Ramp Amount

Get the minimum on-ramp amount for a fiat currency.

Returns the minimum fiat amount required to initiate an on-ramp transaction for a given currency.

Endpoint

GET /v1/onramp/minimum-amount/:currency

Authentication

Header
Value

Authorization

Your API key

Path parameters

Parameter
Type
Description

currency

string

Fiat currency code (e.g., NGN, KES, ZAR)

Example request

curl -X GET https://ramp-api.ivorypay.io/api/v1/onramp/minimum-amount/NGN \
  -H "Authorization: your_api_key"
const response = await fetch(
  "https://ramp-api.ivorypay.io/api/v1/onramp/minimum-amount/NGN",
  {
    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/onramp/minimum-amount/NGN",
    headers={
        "Authorization": "your_api_key",
    },
)

print(response.json())

Example response

{
  "success": true,
  "message": "Query successful",
  "data": {
    "currency": "NGN",
    "minimumAmount": 1000
  }
}

Minimum amounts vary by currency and may change. Always check before initiating a transaction.

Last updated