Skip to content

The App service powers Hoody’s application runtime — execution, sources, recipes, and runtime health. This section covers the operational endpoints for the App service.

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.

{
"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"
}
const health = await client.app.health.check();
Terminal window
curl https://api.hoody.com/api/v1/run/health