Skip to main content

2. Exchange Rate Based on USDT

Exchange Rate Based on USDT

This interface is used to obtain the recent price list of the specified currency pair. By calling this interface, you can obtain the price change data of the specified currency pair in the recent time range, including price, timestamp and other information.

GET
/openapi/abbr/recent/prices
Response
NameTypeDescription
codeintBusiness status code
dataarrayData List
abbrstringCoin name
logostringLogo
pricefloatPrice
stable_coinbooleanIt is a stable currency
timestampintTimestamp
msgstringBusiness message

Example Response

{
"code": 0,
"msg": "success",
"data":
[
{
"abbr": "ARB",
"logo": "https://cce.cash/img/ARB.svg",
"timestamp": 1744774457,
"price": 0.29916121,
"stable_coin": false,
}
]
}