Skip to content
  • Auto
  • Light
  • Dark
DiscordForumGitHubSign up
View as Markdown
Copy Markdown

Open in Claude
Open in ChatGPT

Check Health

client.health(RequestOptionsoptions?): HealthResponse { status, version }
get/v1/health/

Async health check endpoint.

ReturnsExpand Collapse
HealthResponse { status, version }

Health check response body

status: string
version: string
Check Health
import Letta from '@letta-ai/letta-client';

const client = new Letta({
  apiKey: 'My API Key',
});

const response = await client.health();

console.log(response.status);
{
  "status": "status",
  "version": "version"
}
Returns Examples
{
  "status": "status",
  "version": "version"
}