Status
Overview
The /v1/status endpoint returns a summary of the most recent Watchtower scan, including counts of scanned, updated, failed, restarted, and skipped containers.
Include metrics in http-api-endpoints to enable it (the status endpoint is enabled alongside metrics).
Response Format
The /v1/status endpoint returns a JSON scan summary:
{
"summary": {
"scanned": 8,
"updated": 0,
"failed": 0,
"restarted": 0,
"skipped": 2
},
"timestamp": "2025-01-20T11:30:45Z",
"api_version": "v1"
}scanned: Number of containers scannedupdated: Number of containers successfully updatedfailed: Number of containers where the update failedrestarted: Number of containers restartedskipped: Number of containers skippedtimestamp: UTC timestamp of the last scan (RFC3339 format)
If no scan has been performed yet, the endpoint returns HTTP 204 (No Content).
HTTP Status Codes
| Status Code | Description |
|---|---|
| 200 | Status retrieved successfully |
| 204 | No scan has been performed yet |
| 401 | Invalid or missing authentication token |
| 500 | Internal server error during request processing |
Last updated on