Connecting…
Real-time monitoring across all tracked services
Integrate our real-time system status into your own applications.
fetch('status_api.php')
.then(r => r.json())
.then(data => console.log(data));
{
"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"
}
]
}
| Parameter | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Unique identifier of the system. |
var client = new HttpClient();
var json = await client.GetStringAsync("status_api.php?id=prog-1");