GET /status
An endpoint reference that returns the combined end state of a site.
Endpoint
GET
/sites/{site}/status
cURL
curl https://status.anchoruptime.com/api/v1/sites/42/status \
-H "Authorization: Bearer dku_a1b2c3d4_4f8b91c2e8d04b46a1d7f2aa6c93e5fd"
Path Parameter
The {site} parameter in the path is not the site name, but the numeric site ID. This ID appears in the Connected card in the plugin admin screen and in the panel URL.
Response Diagram
| Field | Type | Description |
|---|---|---|
site_id |
integer | The ID value of the corresponding site record. |
status |
string|null | Combined site status: up, down, degraded or unknown. |
status_reason |
string|null | Decision engine's last statement. |
last_checked_at |
string|null | ISO-8601 time stamp. |
last_response_ms |
integer|null | Last frontend probe response time value. |
last_status_code |
integer|null | HTTP code for the last frontend probe. |
verified |
boolean | Is the site ownership verification complete? |
Full Example
JSON
{
"site_id": 42,
"status": "degraded",
"status_reason": "Frontend=up, Heartbeat=down",
"last_checked_at": "2026-03-07T12:22:11+00:00",
"last_response_ms": 118,
"last_status_code": 200,
"verified": true
}