2. Exchange Rate Based on USDT
Exchange Rate Based on USDT
此接口用於獲取指定貨幣對的近期價格列表。通過調用此接口,您可以獲取指定貨幣對在近期時間範圍內的價格變動數據,包括價格、時間戳等信息。
GET
/openapi/abbr/recent/prices
響應
Name | Type | Description |
---|---|---|
code | int | 業務狀態碼 |
data | array | 數據列表 |
abbr | string | 幣名稱 |
logo | string | 標誌 |
price | float | 價格 |
stable_coin | boolean | 這是一種穩定幣 |
timestamp | int | 時間戳 |
msg | string | 業務消息 |
示例響應
{
"code": 0,
"msg": "success",
"data":
[
{
"abbr": "ARB",
"logo": "https://cce.cash/img/ARB.svg",
"timestamp": 1744774457,
"price": 0.29916121,
"stable_coin": false,
}
]
}