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

x-api-key

Your API key

Path parameters

Parameter
Type
Description

currency

string

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

Example request

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

Example response

{
  "statusCode": 200,
  "success": true,
  "message": "Query successful",
  "data": {
    "currency": "NGN",
    "minimumAmount": 1000
  }
}
circle-info

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

Last updated