取得維護資訊
資訊
保護期是指在維護後持續的一段保護期(保護期是選用配置,也有可能不會配置保護期)。 保護期間支援撤單、下單(僅Maker Only限價單)、增加或減少保證金。
HTTP 請求
GET /maintain/info
請求參數
None
請求回應
參數名 | 類型 | 說明 |
---|---|---|
started_at | int | 維護開始時間,單位:毫秒 |
ended_at | int | 維護結束時間,單位:毫秒 |
scope | []string | 維護範圍: PERPETUAL:合約 SPOT:現貨 ALL_SITEITE: 全站維護 |
announce_url | string | 跳轉連結 |
announce_enabled | bool | 是否有跳轉 |
protect_duration_start | int | 保護期開始時間,單位:毫秒 |
protect_duration_end | int | 保護期結束時間,單位:毫秒 |
請求範例
GET /maintain-info
回應範例
{
"data": [
{
"started_at": 1713852000000,
"ended_at": 1713852120000,
"protect_duration_start": 0,
"protect_duration_end": 0,
"announce_enabled": false,
"announce_url": "",
"scope": [
"ALL_SITE"
]
},
{
"started_at": 1713974400000,
"ended_at": 1714147200000,
"protect_duration_start": 1714147200000,
"protect_duration_end": 1714148100000,
"announce_enabled": true,
"announce_url": "https://www.coinex.com/zh-hans/announcements/detail/25997652101012",
"scope": [
"SPOT"
]
}
],
"code": 0,
"message": "OK"
}