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

curl --location --request POST 'https://app.thedex.cloud/api/v1/info/payout/limit/fiat' \
--header 'X-EX-APIKEY: <string>' \
--header 'X-EX-PAYLOAD: <string>' \
--header 'X-EX-SIGNATURE: <string>' \
--header 'Content-Type: application/json' \
--header 'Accept: */*' \
--data '{}'

Example Curl

curl --location --request POST 'https://app.thedex.cloud/api/v1/info/payout/limit/fiat' \
--header 'X-EX-APIKEY: abcd1234apikeyexample' \
--header 'X-EX-PAYLOAD: e30=' \
--header 'X-EX-SIGNATURE: a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6e7f8g9h0i1j2k3l4m5n6o7p8q9r0s1t2' \
--header 'Content-Type: application/json' \
--header 'Accept: */*' \
--data '{}'

Last updated