Skip to main content
GET
/
health
curl -X GET "http://localhost:8080/health"
{
  "status": "ok",
  "model": "nomic-embed-text",
  "items": 1500,
  "max_items": 100000,
  "remaining": 98500
}

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.

Overview

Returns whether the server is running, which Ollama embedding model is configured, and how many items are stored versus the global cap (default 100,000).
curl -X GET "http://localhost:8080/health"
{
  "status": "ok",
  "model": "nomic-embed-text",
  "items": 1500,
  "max_items": 100000,
  "remaining": 98500
}

Response fields

FieldTypeDescription
statusstring"ok" when the server is up
modelstringOllama embedding model name
itemsnumberCurrent item count (all namespaces)
max_itemsnumberGlobal item limit
remainingnumbermax_items - items
Use the same quota fields when uploads return 409 - see Upload documents.