获取维护信息
信息
保护期是指在维护后持续的一段保护期(保护期是可选配置,也有可能不会配置保护期)。 保护期期间支持撤单、下单(仅Maker Only限价单)、增加或减少保证金。
HTTP 请求
GET /maintain/info
请求参数
None
请求响应
参数名 | 类型 | 说明 |
---|---|---|
started_at | int | 维护开始时间,单位:毫秒 |
ended_at | int | 维护结束时间,单位:毫秒 |
scope | []string | 维护范围: PERPETUAL:合约 SPOT:现货 ALL_SITE:全站维护 |
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"
}