Overview
The Hedera Status API enables programmatic access to the current operational status, incident reports, and scheduled maintenance for the Hedera network. This API is especially useful for developers and system operators who want to integrate real-time status updates into their applications or monitor system health programmatically.Key Features
- Real-time Status Updates: Retrieve the current operational state of all Consensus Nodes.
- Incident Reports: Access detailed information about current and past incidents, including affected components and resolution status.
- Scheduled Maintenance: Get advance notice and real-time updates on planned maintenance windows.
For real-time visual monitoring, visit https://status.hedera.com.
Base URL
The base URL for all endpoints is:Endpoints
| Endpoint | Description |
|---|---|
GET /summary.json | Get a summary of the status page, including a status indicator, component statuses, unresolved incidents, and any upcoming or in-progress scheduled maintenance. |
GET /status.json | Get the status rollup for the whole page. This endpoint includes an indicator - one of none, minor, major, or critical, as well as a human description of the blended component status.
|
GET /components.json | List all components. Each component is listed along with its status - one of operational, degraded_performance, partial_outage, or major_outage. |
GET /incidents.json | Get a list of the 50 most recent incidents. This includes all unresolved incidents as described above, as well as those in the Resolved and Postmortem state. |
GET /incidents/unresolved.json | Get a list of any unresolved incidents. This endpoint will only return incidents in the Investigating, Identified, or Monitoring state. |
GET /scheduled-maintenances.json | Get a list of the 50 most recent scheduled maintenance. This includes scheduled maintenance as described in the above two endpoints, as well as those in the Completed state. |
GET /scheduled-maintenances/upcoming.json | Get a list of any upcoming maintenance. This endpoint will only return scheduled maintenances still in the Scheduled state. |
GET /scheduled-maintenances/active.json | Get a list of any active maintenance. This endpoint will only return scheduled maintenance in the In Progress or Verifying state. |