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

Open in Claude
Open in ChatGPT

Check Health

health() -> HealthResponse
get/v1/health/

Async health check endpoint.

ReturnsExpand Collapse
class HealthResponse:

Health check response body

status: str
version: str
Check Health
from letta_client import Letta

client = Letta(
    api_key="My API Key",
)
response = client.health()
print(response.status)
{
  "status": "status",
  "version": "version"
}
Returns Examples
{
  "status": "status",
  "version": "version"
}