🏦Currencies API
The Currencies API allows you to retrieve a list of all available cryptocurrencies, their networks, the minimum withdrawable amount, and associated network transaction fees. This API is useful for und
Endpoint
Headers
MALUM: {Business ID}:{Secret Key}Success Response
{
"status": "success",
"message": "Currencies retrieved.",
"data": [{
"short": "BTC",
"network": "BTC",
"min_withdraw": "0.000286",
"tx_fee": "0.00022"
}, {
"short": "ETH",
"network": "ETH",
"min_withdraw": "0.001",
"tx_fee": "0.00066"
}, {
"short": "LTC",
"network": "LTC",
"min_withdraw": "0.01",
"tx_fee": "0.001"
}, {
"short": "USDC",
"network": "ETH",
"min_withdraw": "10",
"tx_fee": "5.577"
}, {
"short": "USDC",
"network": "POLYGON",
"min_withdraw": "0.5",
"tx_fee": "0.011"
}, {
"short": "USDC",
"network": "BSC",
"min_withdraw": "1",
"tx_fee": "0.33"
}, {
"short": "USDT",
"network": "ETH",
"min_withdraw": "10",
"tx_fee": "5.577"
}, {
"short": "USDT",
"network": "TRON",
"min_withdraw": "2.431",
"tx_fee": "1.87"
}, {
"short": "USDT",
"network": "BSC",
"min_withdraw": "1",
"tx_fee": "0.33"
}, {
"short": "USDT",
"network": "POLYGON",
"min_withdraw": "0.5",
"tx_fee": "0.011"
}],
"timestamp": 1728679774
}Error Response
Example Request
Example Success Response
Example Error Response
Notes
Last updated