Available Currencies
Retrieve a list of all supported cryptocurrencies and their compatible networks
Endpoint
GET
/v1/currenciesThis endpoint does not require authentication
Request Example
curl -X GET "https://api.mintmove.io/v1/currencies" \
-H "Content-Type: application/json"Response Example
{
"success": true,
"data": {
"BTC": {
"networks": ["BTC"],
"name": "Bitcoin",
"logo": "https://api.mintmove.io/assets/btc.png",
"color": "#F7931A",
"precision": 8,
"min_amount": 0.0001,
"max_amount": 10.0,
"enabled": true,
"priority": 1
},
"USDT": {
"networks": ["ERC20", "TRC20", "BEP20"],
"name": "Tether",
"logo": "https://api.mintmove.io/assets/usdt.png",
"color": "#26A17B",
"precision": 6,
"min_amount": 1.0,
"max_amount": 100000.0,
"enabled": true,
"priority": 1
},
"BNB": {
"networks": ["BEP20"],
"name": "BNB",
"logo": "https://api.mintmove.io/assets/bnb.png",
"color": "#F3BA2F",
"precision": 8,
"min_amount": 0.01,
"max_amount": 1000.0,
"enabled": true,
"priority": 2
}
}
}Response Fields
| Field | Type | Description |
|---|---|---|
| networks | Array | Supported blockchain networks (e.g., ERC20, TRC20, BEP20) |
| name | String | Full currency name |
| logo | String | URL to currency logo image |
| color | String | Brand color in hex format |
| precision | Number | Decimal precision for amounts |
| min_amount | Number | Minimum exchange amount |
| max_amount | Number | Maximum exchange amount |
| enabled | Boolean | Whether the currency is currently available |
| priority | Number | Display priority (1 = highest, used for sorting) |
Supported Networks
- ERC20 - Ethereum network (Ethereum mainnet)
- TRC20 - Tron network (Tron mainnet)
- BEP20 - Binance Smart Chain (BSC mainnet)
- BTC - Bitcoin native network
- ETH - Ethereum native network
- BNB - Binance Coin native network
- SOL - Solana native network
- TRX - Tron native network
Usage Notes
- •The response is cached for 5 minutes. Currency availability may change, so refresh periodically for production applications.
- •Only currencies with
enabled: trueare available for exchange. - •Use the
priorityfield to sort currencies in your UI (lower numbers = higher priority). - •Network compatibility is important - ensure you select compatible networks when creating orders.