Rates and Fees
Before initializing a fiat onramp payment, you might want to know what rate your USDT would be settled at. Make a GET request to the following endpoint.
The request takes currency
and country_code
as a query param.
With the following header
If the API call is successful, LocalRamp returns the following response:
processor_fee
is what LocalRamp charges in local currency fiat i.e NGN, GHS. It will be deducted from whatever the user sends.
exchange_rate
is the purchase price of the USDT.
Rate Calculation
To calculate how much you would eventually receive in your USDT wallet for any sender amount
receiver_amount = (sender_amount - processor_fee
) / exchange_rate
Last updated