Fetch fiat currency amount limits on payout creation

Returns a list of fiat currency limits (minimum ) applicable when creating a payout. Note: this endpoint is needed only in case of use fiat-to-crypto payouts

POST https://app.thedex.cloud/api/v1/info/payout/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

Requirements

"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

Last updated