Fetch active crypto and fiat currencies

Returns a list of all active crypto and fiat currencies used in invoice and payout processing

POST https://app.thedex.cloud/api/v1/info/currencies

More detailed information about currencies can be found here

Currencies and networks

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


{
   "fiatCurrencies":[
      "USD",
      "EUR",
      "UAH",
      "KZT",
      "PLN"
   ],
   "payCurrencies":[
      "BTC_BITCOIN",
      "ETH_ETHEREUM",
      "USDT_ETHEREUM",
      "USDC_ETHEREUM",
      "DAI_ETHEREUM",
      "TRX_TRON",
      "USDT_TRON",
      "LTC_LITECOIN",
      "BNB_BSC",
      "TON_TON",
      "DOGE_DOGECOIN",
      "MATIC_POLYGON",
      "USDT_POLYGON"
   ]
}

Response JSON attributes:

Name

Type

Definition

"fiatCurrencies"

String array

Active fiat currencies that can be used in invoice creation

"payCurrencies"

String array

Active fiat currencies that can be used in invoice / payout creation

Request Curl

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

Last updated