Skip to content
Hoody.com

The Hoody Notes service powers collaborative notebooks, documents, and real-time editing inside your containers. It exposes endpoints for managing notebook content, syncing collaborative sessions, and inspecting runtime health.

This page is the entry point for the Notes API reference. It lists the available sub-pages and documents the service-wide health check.

Health

Inspect the runtime status, build metadata, and resource counters of the Notes service.

View endpoint

Returns a standardized health payload describing the current Notes service instance: its identity (service), build and start timestamps, memory and file-descriptor counters, process id, peer IP, and the user agent of the caller. Use this endpoint to verify that a container’s Notes service is reachable and operational.

This endpoint takes no parameters.

Terminal window
curl -X GET "https://{projectId}-{containerId}-notes-1.{server}.containers.hoody.com/api/v1/notes/health"
FieldTypeRequiredDescription
statusstringYesHealth status of the service. Always "ok" when the endpoint responds.
servicestringYesLogical name of the service responding (for example, "notes").
builtstring or nullYesBuild timestamp of the running binary, or null when unavailable.
startedstringYesISO-8601 timestamp at which the service process started.
memoryobject or nullYesProcess memory usage. Contains rss (resident set size, in bytes) and heap (heap usage in bytes, or null).
fdsnumber or nullYesNumber of open file descriptors held by the process, or null when unavailable.
pidnumberYesOperating system process id of the service.
ipstringYesIP address of the caller as observed by the service.
userAgentstring or nullYesUser-Agent header of the caller, or null when not provided.