Fetch cryptocurrency amount limits on invoice creation

Returns a list of cryptocurrency amount limits (minimum) applicable when creating an invoice.

POST https://app.thedex.cloud/api/v1/info/invoice/limit/crypto

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

[
   {
      "monetary": "String",
      "minimalLimit": "String"
   }
]

Example:

[
   {
      "monetary": "BTC_BITCOIN",
      "minimalLimit": "0.000025000"
   },
   {
      "monetary": "ETH_ETHEREUM",
      "minimalLimit": "0.000350000"
   }
]

Response JSON attributes:

"monetary"

String

The pay-currency (also mentions as crypto-currency) name is used as title of fiat currency rates. Reach out accessed values to define attribute by link: /api/v1/info/currencies attribute "payCurrencies"

"minimalLimit"

String

Minimal limit in crypto currency to create invoice.

Request curl:

curl --location --request POST 'https://app.thedex.cloud/api/v1/info/invoice/limit/crypto' \
--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/invoice/limit/crypto' \
--header 'X-EX-APIKEY: abcd1234apikeyexample' \
--header 'X-EX-PAYLOAD: e30=' \
--header 'X-EX-SIGNATURE: 123abc456def7890abcdef1234567890abcdef1234567890abcdef1234567890' \
--header 'Content-Type: application/json' \
--header 'Accept: */*' \
--data '{}'

Last updated