Skip to main content
GET
/
v1
/
health
Health Check
curl --request GET \
  --url https://api.astralform.ai/v1/health
{
  "status": "ok",
  "version": "0.1.0",
  "ollama_connected": false
}

Documentation Index

Fetch the complete documentation index at: https://astralform.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Overview

Simple health check endpoint to verify the API server is running. No authentication required.

Response

status
string
Server status. Always "ok" when healthy.
version
string
API server version (e.g., "0.1.0").
ollama_connected
boolean
Whether Ollama (local LLM) is reachable. May be false if using cloud providers only.
{
  "status": "ok",
  "version": "0.1.0",
  "ollama_connected": false
}