cURL
curl --request GET \ --url https://api.example.com/api/v1/system/status
{ "status": "ok", "result": { "initialized": true, "user": "alice" }, "time": 0.05 }
/health
X-API-Key
ok
error
Show Status Object
curl -X GET http://localhost:1933/api/v1/system/status \ -H "X-API-Key: your-key"
curl -X GET http://localhost:1933/health
{ "status": "ok" }
curl -X GET http://localhost:1933/ready
{ "status": "ready", "checks": { "agfs": "ok", "vectordb": "ok", "api_key_manager": "ok" } }
{ "status": "not_ready", "checks": { "agfs": "ok", "vectordb": "error: connection refused", "api_key_manager": "ok" } }