Get Limits
Before initializing a pay transaction, you'll need to know the maximum and minimum amounts possible for a sender_currency pair. Make a GET request to the following endpoint.
https://api.localramp.co/v1/transaction/pay/limits?currency=ZMW
The request takes currency
as query params.
With the following header
x-auth-token: <SECRET_KEY>
If the API call is successful, LocalRamp returns the following response:
{
"status": "success",
"data": {
"limits": {
"receiver_minimum": 0.5,
"receiver_maximum": 3.7,
"receiver_currency": "USDT_BSC"
}
}
}
It returns the minimum and maximum USDT amount
Last updated