> ## Documentation Index
> Fetch the complete documentation index at: https://docs.manthan.systems/llms.txt
> Use this file to discover all available pages before exploring further.

# System Endpoints

> Health and version endpoints

## Health

```
GET /health
```

Returns a static liveness indicator. Implementation:

```ts theme={null}
router.get("/", (_req, res) => {
  res.json({ status: "UP" });
});
```

**Response `200`**

```json theme={null}
{ "status": "UP" }
```

<Note>
  The TypeScript SDK's `HealthApi.health()` return type (`HealthStatus`) additionally models optional `version` and `timestamp` fields, but the current route implementation only ever returns `status`.
</Note>

## Version

```
GET /version
```

Implementation:

```ts theme={null}
router.get("/", (_req, res) => {
  res.json({ name: "Parmana", version: "0.4.0", api: "v1" });
});
```

**Response `200`**

```json theme={null}
{ "name": "Parmana", "version": "0.4.0", "api": "v1" }
```

<Note>
  This value is currently hardcoded in the route handler rather than sourced from `package.json` (which is at `0.1.0` at the monorepo root) — the two numbers are not the same thing and shouldn't be assumed to move together.
</Note>
