Get Transaction Limits
https://sandboxapi.bitnob.co/api/v1/payouts/supported-countries (opens in a new tab)
Get transaction limits for offramp operations across supported countries. The endpoint provides information on the lower and higher transaction limits, the currency and exchange rate, and equivalent limits in USD for each country.
Request
Offramps/Get Transaction Limits [GET]
curl --location 'https://sandboxapi.bitnob.co/api/v1/payouts/limits' \
--header 'Authorization: Bearer API-KEY'Responses
🟢 200 - Result example
{
"status": true,
"message": "OffRamp limits retrieved successfully",
"data": [
{
"lowerLimit": "1000",
"higherLimit": "2000000",
"currency": "NGN",
"country": "NG",
"rate": "1635.81",
"usdLowerLimit": "0.61",
"usdHigherLimit": "1222.64"
},
{
"lowerLimit": "20",
"higherLimit": "150000",
"currency": "KES",
"country": "KE",
"rate": "126.73",
"usdLowerLimit": "0.16",
"usdHigherLimit": "1183.62"
},
{
"lowerLimit": "20",
"higherLimit": "300000",
"currency": "GHS",
"country": "GH",
"rate": "16.19",
"usdLowerLimit": "1.24",
"usdHigherLimit": "18529.96"
},
{
"lowerLimit": "10",
"higherLimit": "20000",
"currency": "AUD",
"country": "AU",
"rate": "1.62",
"usdLowerLimit": "6.17",
"usdHigherLimit": "12345.68"
}
]
}