Skip to content

Hoody Notes is the collaborative notebook and document service of the Hoody platform. It powers shared notebooks, structured documents, and real-time multi-cursor editing. This page documents the service-level health endpoint used to verify that a deployment of the Notes service is running and reachable.

Health

Check service liveness and inspect runtime metadata such as build time, memory usage, process ID, and caller IP. See the Health section below.

Returns a standardized health payload with service identity, build/start timestamps, resource counters (memory, file descriptors), process ID, peer address, and the caller user-agent. Use this endpoint for readiness/liveness probes and for collecting runtime diagnostics from a running Notes service instance.

This endpoint takes no parameters.

Terminal window
curl -X GET https://api.hoody.com/api/v1/notes/health
FieldTypeDescription
statusstringService health status. Always "ok" when the endpoint responds successfully.
servicestringService name identifier.
builtstring | nullISO 8601 build timestamp, or null if the build metadata is unavailable.
startedstringISO 8601 timestamp marking when the service process started.
memoryobject | nullProcess memory snapshot. Contains rss (resident set size in bytes) and heap (heap usage in bytes, or null). May be null if the metric is not available.
fdsnumber | nullNumber of open file descriptors, or null if the platform does not report this metric.
pidnumberOperating system process ID of the running service.
ipstringPeer IP address of the caller as observed by the service.
userAgentstring | nullUser-Agent header sent by the caller, or null if absent.