Skip to main content

Get System Status

Get the system status when there is a platform maintenance or service incident.

info

Please note currently system maintenance that may result in short interruption (lasting less than 10 seconds) or websocket disconnection (users can immediately reconnect) will not be announced.

HTTP Request

GET /v5/system/status

Request Parameters

ParameterRequiredTypeComments
idfalsestringid. Unique identifier
statefalsestringsystem state

Response Parameters

ParameterTypeComments
listarrayObject
> idstringId. Unique identifier
> titlestringTitle of system maintenance
> statestringSystem state
> beginstringStart time of system maintenance, timestamp in milliseconds
> endstringEnd time of system maintenance, timestamp in milliseconds. Before maintenance is completed, it is the expected end time; After maintenance is completed, it will be changed to the actual end time.
> hrefstringHyperlink to system maintenance details. Default value is empty string
> serviceTypesarray<int>Service Type
> productarray<int>Product
> uidSuffixarray<int>Affected UID tail number
> maintainTypestringMaintenance type
> envstringEnvironment

Request Example

GET /v5/system/status HTTP/1.1
Host: api.bybit.com

Response Example

{
"retCode": 0,
"retMsg": "",
"result": {
"list": [
{
"id": "4d95b2a0-587f-11f0-bcc9-56f28c94d6ea",
"title": "t06",
"state": "completed",
"begin": "1751596902000",
"end": "1751597011000",
"href": "",
"serviceTypes": [
2,
3,
4,
5
],
"product": [
1,
2
],
"uidSuffix": [],
"maintainType": 1,
"env": 1
},
{
"id": "19bb6f82-587f-11f0-bcc9-56f28c94d6ea",
"title": "t05",
"state": "completed",
"begin": "1751254200000",
"end": "1751254500000",
"href": "",
"serviceTypes": [
1,
4
],
"product": [
1
],
"uidSuffix": [],
"maintainType": 3,
"env": 1
},
{
"id": "25f4bc8c-533c-11f0-bcc9-56f28c94d6ea",
"title": "t04",
"state": "completed",
"begin": "1751017967000",
"end": "1751018096000",
"href": "",
"serviceTypes": [
2
],
"product": [
2
],
"uidSuffix": [],
"maintainType": 1,
"env": 1
},
{
"id": "679a9c5f-533b-11f0-bcc9-56f28c94d6ea",
"title": "t03",
"state": "completed",
"begin": "1751017532000",
"end": "1751017658000",
"href": "",
"serviceTypes": [
5,
4
],
"product": [
1,
2
],
"uidSuffix": [],
"maintainType": 2,
"env": 1
},
{
"id": "c8990f96-5332-11f0-8fd3-c241b123dd9e",
"title": "t02",
"state": "completed",
"begin": "1751013817000",
"end": "1751013890000",
"href": "",
"serviceTypes": [
5,
4,
3,
2,
1
],
"product": [
4,
3,
2,
1
],
"uidSuffix": [],
"maintainType": 2,
"env": 1
},
{
"id": "f9d6842d-5331-11f0-8fd3-c241b123dd9e",
"title": "t01",
"state": "completed",
"begin": "1751012688000",
"end": "1751012760000",
"href": "",
"serviceTypes": [
1,
2,
3,
4,
5
],
"product": [
1,
2,
3,
4
],
"uidSuffix": [],
"maintainType": 3,
"env": 2
}
]
},
"retExtInfo": {},
"time": 1751858399649
}