Skip to Content
APIHealth

Health Check

GET /api/v1/health

Returns the current health status of the registry service and its dependencies.

Headers

This endpoint differs from other API endpoints:

HeaderValue
Cache-Controlno-cache, no-store
Content-Typeapplication/json

Status Codes

StatusMeaning
200All checks passing — service is healthy
503One or more checks failing — service is degraded or unhealthy

Response

{ "status": "healthy", "timestamp": "2026-03-14T12:00:00.000Z", "version": "4.0.1", "checks": { "registry": { "status": "pass", "latencyMs": 2, "itemCount": 72 }, "filesystem": { "status": "pass", "latencyMs": 1, "message": "ok" } } }

Response Fields

FieldTypeDescription
statusstringOverall status: healthy, degraded, or unhealthy
timestampstringISO 8601 timestamp of the check
versionstringApplication version
checksobjectIndividual dependency checks
checks.*.statusstringpass or fail
checks.*.latencyMsnumberCheck latency in milliseconds

Example

curl https://registry.mukoko.com/api/v1/health
Last updated on