Health

3 endpoints

Comprehensive health check

Returns detailed health status including database connectivity, connection pool status, and application readiness. Used for monitoring and alerting systems. No authentication required.

Responses
200Application is healthy or degraded but operational
500Internal server error during health check
503Application is unhealthy and not operational
Code Examples
example.ts
typescript
1import { Limbos } from '@limbos/sdk';
2
3const client = new Limbos({
4 apiKey: process.env.LIMBOS_API_KEY,
5});
6
7const result = await client.health.list();
8
9console.log(result);