Hoody App
Section titled “Hoody App”The App service powers Hoody’s application runtime — execution, sources, recipes, and runtime health. This section covers the operational endpoints for the App service.
Health
Section titled “Health”GET /api/v1/run/health
Section titled “GET /api/v1/run/health”Returns the standardized 9-field health response for the App service. This endpoint is unauthenticated and always returns HTTP 200 with application/json when the service is up.
This endpoint takes no parameters.
Response
Section titled “Response”{ "status": "ok", "service": "hoody-app", "built": "2025-01-15T10:30:00Z", "started": "2025-01-20T14:22:18Z", "memory": { "rss": 134217728, "heap": 67108864 }, "fds": 42, "pid": 12345, "ip": "10.0.0.5", "userAgent": "node-fetch/1.0"}SDK Usage
Section titled “SDK Usage”const health = await client.app.health.check();curl https://api.hoody.com/api/v1/run/health