Get active crypto and fiat currencies
Get a list of all active crypto and fiat currencies used in invoice and payout processing
POST
https://app.thedex.cloud/api/v1/info/currencies
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)
Name
Type
Description
{
"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"
]
}
Request curl:
curl --location '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 '{
}'
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
Last updated