Skip to content
Hoody.com

The notification server exposes two unauthenticated endpoints for health monitoring and observability. The health check returns a structured status payload suitable for liveness probes, while the metrics endpoint serves Prometheus-formatted counters and gauges for scraping.

Returns the standardized 9-field health response. Unauthenticated. Always returns HTTP 200 with application/json when the service is up.

This endpoint takes no parameters.

Terminal window
curl -X GET "https://proj-abc123-cont-xyz789-n-1.us-east-1.containers.hoody.icu/api/v1/notifications/health"

Returns server metrics in Prometheus text exposition format. The response body uses text/plain and follows the Prometheus 0.0.4 exposition format, making it directly scrapable by a Prometheus server.

This endpoint takes no parameters.

Terminal window
curl -X GET "https://proj-abc123-cont-xyz789-n-1.us-east-1.containers.hoody.icu/api/v1/notifications/metrics"