Skip to content

The Hoody Notes service provides collaborative notebooks, documents, and real-time editing capabilities. This page covers the public HTTP endpoints exposed by the Notes service.

Returns a standardized health payload for the Notes service. The response includes service identity, build and start timestamps, resource counters (memory and file descriptors), the process identifier, the peer IP address, and the caller’s user-agent string. Use this endpoint for liveness checks, monitoring dashboards, and on-call diagnostics.

This endpoint takes no parameters.

Terminal window
curl -X GET https://api.hoody.com/api/v1/notes/health \
-H "Authorization: Bearer <token>"
NameTypeRequiredDescription
statusstringYesHealth status. Currently always "ok" when the service is reachable.
servicestringYesService identifier. Returns "notes" for this endpoint.
builtstring | nullYesBuild timestamp of the running service binary (ISO 8601), or null if unavailable.
startedstringYesISO 8601 timestamp marking when the service process started.
memoryobject | nullYesResident memory counters: rss (bytes) and heap (bytes or null).
fdsnumber | nullYesNumber of open file descriptors, or null if unavailable on the host platform.
pidnumberYesOperating system process identifier for the running service.
ipstringYesPeer IP address of the caller as observed by the service.
userAgentstring | nullYesUser-Agent header from the incoming request, or null if absent.
StatusMeaning
200Service is healthy and returned the diagnostic payload.