Skip to main content

1. List of currencies

List of currencies

This interface is used to obtain the list of currently supported order currencies. By calling this interface, you can obtain the currency information that can be used to place an order, including the currency name, logo, etc.

GET
/openapi/abbr/lists
NameTypeRequiredDescription
with_unavailable booleannoWhether to obtain unavailable coin code
Response
NameTypeDescription
codeintBusiness status code
dataarrayData object
abbrstringCoin name
chainstringChain name
decimalintCoin quantity accuracy
logostringLogo
namestringContract name
recvbooleanThe currencies that customers can receive services from
sendbooleanCurrencies available for sending to customers
sortintSorting
theme_colorstringSubject color
typestringCoin protocol name
msgstringBusiness message

Example Response

{
"code": 0,
"msg": "success",
"data": [
{
"chain": "Monero",
"abbr": "XMR",
"name": "Monero",
"logo": "https://cce.cash/img/XMR.svg",
"theme_color": "#FA6800",
"type": "",
"sort": 1,
"decimal": 12,
"recv": true,
"send": true
}
]
}