Get Coin Info
HTTP request
GET /assets/info
Request parameters
Parameter Name | Required | Type | Notes |
---|---|---|---|
ccy | false | string | Currency name.
|
Return parameters
Parameter Name | Type | Notes |
---|---|---|
short_name | string | Coin/token ticker |
full_name | string | Coin/token full name |
website_url | string | Coin official website |
white_paper_url | string | Coin whitepaper url |
chain_info | []object | Public chain info |
chain_info.chain_name | string | Chain name |
chain_info.identity | string | The unique identifier for the public chain coins, whereas in most chains, the contract address is used as the unique identifier, such as the ETH public chain |
chain_info.explorer_url | string | Public chain explorer url where the coins can be uniquely identified by the explorer url combined with the coin's unique identifier. |
Response example
GET /assets/info?ccy=CET
Response example
{
"code": 0,
"data": [
{
"short_name": "CET",
"full_name": "CoinEx Token",
"website_url": "https://www.coinex.com/token",
"white_paper_url": "https://www.coinex.org/whitepaper_en.pdf",
"chain_info": [
{
"chain_name": "CSC",
"identity": "",
"explorer_url": "https://www.coinex.net/"
},
{
"chain_name": "Ethereum (ERC20)",
"identity": "0x081f67afa0ccf8c7b17540767bbe95df2ba8d97f",
"explorer_url": "https://etherscan.io/token/0x081f67afa0ccf8c7b17540767bbe95df2ba8d97f"
}
]
},
],
"message": "OK"
}