3、Chain token enum api
Description: Get the chain and token names supported by the openapi interface.
1、URL
GET /openapi/v2/data/enum
2、Header Parameters
Parameter name
Data type
Required
Description
timestamp
int
true
Timestamp (in seconds)
sign
string
true
Signature sha256("timestamp=timestamp value&secret=secretkey value")
3、Request Parameters
Parameter name
Data type
Required
Description
api_key
string
true
apikey
4、Return Parameters
{
"code": 200,
"msg": "success",
"data": {
"network_coin_list": [
{
"coin_list": [ //List of supported tokens
"BTC"
],
"network": "Bitcoin" //Mainnet
},
{
"coin_list": [
"ETH",
"USDT",
"USDC"
],
"network": "Ethereum"
},
{
"coin_list": [
"TRX",
"USDT"
],
"network": "TRON"
},
{
"coin_list": [
"BNB",
"USDT",
"USDC"
],
"network": "BNB"
},
{
"coin_list": [
"MATIC",
"USDT",
"USDC"
],
"network": "POLYGON"
},
......
]
}
}Last updated