get
https://api.liquiditytech.com/api/v1/system/status
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Retrieve the current and upcoming system maintenance events. When data is an empty array, the system is operating normally with no active or scheduled maintenance.
Request Parameters
None.
Response Fields
| Field | Type | Description |
|---|---|---|
status | Integer | 1: maintenance is currently in progress. 0: maintenance is scheduled but not yet started. |
startTime | Long | Maintenance start time, in milliseconds since Unix epoch. |
endTime | Long | Estimated maintenance end time, in milliseconds since Unix epoch. |
desc | String | Description of the maintenance event. |
serviceType | String | The affected service. Possible values: DEPOSIT, TRANSFER, WITHDRAW, LOCK, TRADE. |
maintainType | String | "1" indicates scheduled maintenance. |
env | String | "1" indicates the production environment. |
Example Response
No active maintenance:
{
"code": 200,
"message": "success",
"data": []
}
With active and scheduled maintenance events:
{
"code": 200,
"message": "success",
"data": [
{
"status": 1,
"startTime": 1744380000000,
"endTime": 1744383600000,
"desc": "The trading feature will be unavailable due to system upgrade",
"serviceType": "TRADE",
"maintainType": "1",
"env": "1"
},
{
"status": 0,
"startTime": 1744470000000,
"endTime": 1744473600000,
"desc": "The withdrawal feature will be temporarily unavailable",
"serviceType": "WITHDRAW",
"maintainType": "1",
"env": "1"
}
]
}
