Returns minimum and maximum amount of order in USD and local currency with applied fees.
Successful response
const response = await fetch('https://sandbox-api.fonbnk.com/api/offramp/limits?type=bank&country=text&network=AVALANCHE&asset=USDC', { method: 'GET', headers: {}, }); const data = await response.json();
{ "minUsd": 0, "maxUsd": 0, "minLocalCurrency": 0, "maxLocalCurrency": 0 }