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
Name | Type | Description |
---|---|---|
code | int | Business status code |
data | array | Data List |
abbr | string | Coin name |
logo | string | Logo |
price | float | Price |
stable_coin | boolean | It is a stable currency |
timestamp | int | Timestamp |
msg | string | Business 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,
}
]
}