Basic Crypto Information
HTTP Request Retrieve all crypto information on the platform
- GET /api/v2/public/currencies
Weight(IP): 1
Request parameters
NONE
Request example
curl "https://api-spot.weex.com/api/v2/public/currencies"
Response parameters
| Field | Field Description | 
|---|---|
| coinId | Crypto ID | 
| coinName | Name of the crypto | 
| transfer | Whether transfer is supported | 
| chains | Blockchain information | 
| > chain | Name of the blockchain | 
| > needTag | Whether a tag is required | 
| > withdrawAble | Whether withdrawals are enabled | 
| > rechargeAble | Whether deposits are enabled | 
| > withdrawFee | Withdrawal transaction fee | 
| > depositConfirm | Number of block confirmations required for deposits | 
| > withdrawConfirm | Number of block confirmations required for withdrawals | 
| > minDepositAmount | Minimum deposit amount | 
| > minWithdrawAmount | Minimum withdrawal amount | 
| > browserUrl | Blockchain explorer URL for the network | 
Response example
{
    "code":"00000",
    "msg":"success",
    "requestTime":1622097139437,
    "data":[
        {
            "coinId":"1",
            "coinName":"BTC",
            "transfer":"true",
            "chains":[
                {
                    "chain":null,
                    "needTag":"false",
                    "withdrawAble":"true",
                    "rechargeAble":"true",
                    "withdrawFee":"0.005",
                    "depositConfirm":"1",
                    "withdrawConfirm":"1",
                    "minDepositAmount":"0.001",
                    "minWithdrawAmount":"0.001",
                    "browserUrl":"https://blockchair.com/bitcoin/testnet/transaction/"
                }
            ]
        },
        {
            "coinId":"2",
            "coinName":"USDT",
            "transfer":"true",
            "chains":[
                {
                    "chain":"ERC20",
                    "needTag":"false",
                    "withdrawAble":"true",
                    "rechargeAble":"true",
                    "withdrawFee":"0.01",
                    "depositConfirm":"12",
                    "withdrawConfirm":"1",
                    "minDepositAmount":"0.1",
                    "minWithdrawAmount":"0.1",
                    "browserUrl":"https://ropsten.etherscan.io/tx/"
                }
            ]
        }
    ]
}