Comment on page
Settlement Rates
Read on obtaining rates at which the transaction will be settled
While you can set the exchange rate for a particular transaction while creating the transaction, this API will provide you with the current settlement rates. Settlement rates may differ based on sending currency, receiving country, receiving currency, and payout method.
GET /settlement-rates
Details
Sample Request
Sample Response
Query Parameters
Name | Required | Type | Description |
source_currency | No | String | Sending currency code |
destination_currency | No | String | Receiving currency code |
destination_country | No | String | Two char ISO code of the receiving country |
payout_method | No | String | CASH_PICKUP, BANK_DEPOSIT, WALLET, or HOME_DELIVERY |
curl --location --request GET '{{url}}/settlement-rates?destination_currency={{currencyCode}}&source_currency={{currencyCode}}&destination_country={{countryCode}}&payout_method=CASH_PICKUP'
--header 'X-Client-Id: {{clientId}}'
--header 'X-Client-Secret: {{clientSecret}}'
--header 'Content-Type: application/json'
[
{
"created_at": "2022-03-22 12:00:05",
"destination_country": "GH",
"destination_currency": "GHS",
"payout_method": "CASH_PICKUP",
"settlement_rate": "5.6794",
"source_currency": "USD"
}
]
Last modified 1yr ago