Skip to main content

2. Exchange Rate Based on USDT

Exchange Rate Based on USDT

此接口用於獲取指定貨幣對的近期價格列表。通過調用此接口,您可以獲取指定貨幣對在近期時間範圍內的價格變動數據,包括價格、時間戳等信息。

GET
/openapi/abbr/recent/prices
響應
NameTypeDescription
codeint業務狀態碼
dataarray數據列表
abbrstring幣名稱
logostring標誌
pricefloat價格
stable_coinboolean這是一種穩定幣
timestampint時間戳
msgstring業務消息

示例響應

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