Skip to main content
GET
/
health
Health
curl --request GET \
  --url https://eomer-api.onrender.com/health \
  --header 'Authorization: Bearer <token>'
{
  "version": "<string>",
  "timestamp": "<string>",
  "status": "ok",
  "commit": "<string>",
  "checks": {}
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Successful Response

Health check response.

checks maps each probed resource (e.g. upload_dir) to "ok" or an error string. Overall status is "ok" only when all checks pass; otherwise "degraded".

commit is the git SHA of the deployed code (set via RENDER_GIT_COMMIT on Render, or GIT_COMMIT elsewhere).

version
string
required
timestamp
string
required
status
string
default:ok
commit
string | null
checks
Checks · object