Skip to main content
GET
/
health
Check Service Health
curl --request GET \
  --url https://flowker.sandbox.lerian.net/health \
  --header 'X-API-Key: <api-key>'
{
  "checks": {},
  "status": "healthy",
  "timestamp": "2026-03-17T14:00:00Z",
  "uptime": "127h3m56s",
  "version": "v1.0.0"
}

Authorizations

X-API-Key
string
header
required

API key for authenticating requests to the Flowker API. Provisioned via the API_KEY environment variable during deployment.

Response

Indicates that the request was successful and the response contains the requested data.

checks
object

Individual health checks for each dependency.

status
string

Overall service status: healthy or unhealthy.

Example:

"healthy"

timestamp
string<date-time>

Timestamp of the health check.

Example:

"2026-03-17T14:00:00Z"

uptime
string

Service uptime since last restart.

Example:

"127h3m56s"

version
string

Current Flowker version.

Example:

"v1.0.0"