---
title: "Health check endpoint"
description: "Liveness check — the one route that needs no credentials."
---

> Documentation Index
> Fetch the complete documentation index at: https://tee.hypetrade.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Health check endpoint

## `GET /v1/health`

Liveness only. **No authentication.**

```bash
curl "$API_URL/health"
```

```json
{ "status": "ok" }
```

> **Deliberately uninformative**
>
> This route says nothing about tenants, workspaces, or session counts. It is
> typically the one endpoint left unauthenticated, so it reports only that the
> process is up and serving.

A healthy service answers `200`. Anything else — a connection failure, a
non-`200`, or a body that is not `{"status":"ok"}` — means the instance is not
ready to serve.

Source: https://tee.hypetrade.xyz/api/health/index.mdx
