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

# health

> Check server health and store quota.

```python theme={null}
health = client.health()
```

Returns:

```json theme={null}
{
  "status": "ok",
  "dimension": 768,
  "store_mode": "text",
  "embedding_model": "BAAI/bge-base-en-v1.5",
  "items": 0,
  "max_items": 10000,
  "remaining": 10000
}
```

Works with both `MoorchehEdge` and `MoorchehEdgeApiClient`.

See [API: Health](/api-references/health).
