Skip to main content

System Status

Listen to 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.

URL

  • Mainnet:
    wss://stream.bybit.com/v5/public/misc/status
info
  • EU users registered from "www.bybit.eu", please use wss://stream.bybit.eu/v5/public/misc/status

Topic:
system.status

Response Parameters

ParameterTypeComments
topicstringTopic name
tsnumberThe timestamp (ms) that the system generates the data
dataarrayObject
> 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

Subscribe Example

{"op": "subscribe", "args":["system.status"]}

Response Example

{
"topic": "system.status",
"ts": 1751858399649,
"data": [
{
"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
}
]
}