Fetch fiat currency amount limits on invoice creation
Returns a list of fiat currency limits (minimum ) applicable when creating an invoice.
POST https://app.thedex.cloud/api/v1/info/invoice/limit/fiat
Headers
Name
Type
Description
X-EX-APIKEY*
String
Your API key
X-EX-PAYLOAD*
String
Body to base64
X-EX-SIGNATURE*
String
Encrypted body with the secret key
Request Body (Empty JSON)
{ }Request JSON attributes
Name
Type
Description
-
-
-
Response Body
[
{
"fiatCurrency": "String",
"minimalLimit": "String"
}
]Example:
[
{
"fiatCurrency": "USD",
"minimalLimit": "0.5000"
},
{
"fiatCurrency": "EUR",
"minimalLimit": "0.5000"
},
{
"fiatCurrency": "UAH",
"minimalLimit": "20.0000"
}
]Response JSON attributes:
Name
Type
Requirenments
"fiatCurrency"
String
Fiat currency. Reach out to accessed values to define attributes by link: /api/v1/info/currencies
attribute "fiatCurrencies"
"minimalLimit"
String
Minimal limit in fiat currency to create invoice.
Request Curl
Example Curl
PreviousFetch cryptocurrency to fiat-currency rateNextFetch fiat currency amount limits on payout creation
Last updated