Fetch the current system status of the Binance exchange, including maintenance states and general service availability.
/sapi/v1/system/status
This public endpoint provides real-time operational status for the Binance exchange platform. It is designed to inform trading systems, automation bots, and wallet managers whether system services are fully operational or currently undergoing scheduled maintenance.
Because this request is unauthenticated, it does not require API keys or cryptographic signatures, making it lightweight and easy to integrate into automated pre-check routines.
Parameters accepted by the endpoint.
| Parameter | Type | Required | Description |
|---|---|---|---|
| No query parameters required. This is a public open request. | |||
Always query this endpoint before initiating crucial batch operations or automated withdrawals.
If status returns 1 (System Maintenance), pause processing logic to prevent request timeouts.
Example request using cURL.
curl -X GET 'https://api.binance.com/sapi/v1/system/status'
Example response returned by the API.
{
"status": 0,
"msg": "normal"
}
| Field | Type | Description |
|---|---|---|
status |
INT |
System status code: 0 Normal operation, 1 System Maintenance in progress.
|
msg |
STRING |
Human-readable description, e.g. "normal" or maintenance notice.
|
Workflow for validating system availability.
Prevent automated bots from executing orders or API workflows during exchange maintenance periods.
Periodically verify connectivity to Binance API infrastructure inside microservice architectures.
Display real-time maintenance banners or operation warnings directly inside custom trading dashboards.
This article is part of our complete learning guide covering professional cross-exchange cryptocurrency arbitrage.
Explore the Spot Arbitrage Guide →This article is part of our complete learning guide covering Binance P2P automation, merchant tools, and automated trading.
Explore the Binance P2P Automation Guide →