Custom Rates

Retrieve custom rate and fee configuration available to your business.

-H "x-api-key: your_secret_key"
GET {{host}}/v1/config/custom/rates?currency=KES

Query Parameters

FieldData TypeRequiredDescription
currencystringNoCurrency code to filter by.
pageintegerNoPage to retrieve when a paginated response is returned.
limitintegerNoRecords per page.
rateTypestringNoRate type.
{
  "status": true,
  "message": "Success",
  "code": 200,
  "data": {
    "currency": "KES",
    "rate": 129.5,
    "fees": {
      "fee": 10,
      "vat": 0,
      "processorFee": 0,
      "totalFees": 10
    }
  }
}