BINANCE SAPI · CAPITAL

System Status API

Fetch the current system status of the Binance exchange, including maintenance states and general service availability.

ENDPOINT
GET /sapi/v1/system/status
Authentication NONE (PUBLIC)
API Group Capital / System
Method GET
Response JSON

Overview

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.

01

Request Parameters

Parameters accepted by the endpoint.

Parameter Type Required Description
No query parameters required. This is a public open request.
i
Automated Pre-Flight Check

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.

02

Request Example

Example request using cURL.

cURL BASH
curl -X GET 'https://api.binance.com/sapi/v1/system/status'
03

Response

Example response returned by the API.

RESPONSE 200 OK
{
    "status": 0,
    "msg": "normal"
}

Response Fields

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.
04

How It Works

Workflow for validating system availability.

01 Send Ping Issue public GET request to status endpoint.
02 Check Status Evaluate returned integer status code.
03 Branch Execution Proceed if 0; wait/retry if status is 1.
04 Execute API Tasks Safely call deposits, trades, or withdrawals.

Common Use Cases

Bot Guard Routines

Prevent automated bots from executing orders or API workflows during exchange maintenance periods.

Health Checks

Periodically verify connectivity to Binance API infrastructure inside microservice architectures.

User Alerts

Display real-time maintenance banners or operation warnings directly inside custom trading dashboards.



💬
Telegram WhatsApp