Connecting to API…

System
Status

Real-time monitoring across all tracked services

Total
Online
Offline

Developer API Documentation

Integrate our real-time system status into your own applications.

Get All Systems
Get Single System
GET
Request Example
JavaScript Fetch
fetch('status_api.php')
  .then(r => r.json())
  .then(data => console.log(data));
Success Response
{
  "status": "success",
  "data": [
    {
      "id": "prog-1",
      "name": "System Name",
      "version": "1.0",
      "status": "Online",
      "color": "success",
      "image": "uploads/img.png",
      "last_update": "2026-05-04 12:00:00"
    }
  ]
}
GET
ParameterTypeRequiredDescription
idstringYesUnique identifier of the system.
C# Example
HttpClient Example
var client = new HttpClient();
var json = await client.GetStringAsync("status_api.php?id=prog-1");
Connecting…