curl --request GET \
--url https://api.example.com/api/v1/system/status{
"status": "ok",
"result": {
"initialized": true,
"user": "alice"
},
"time": 0.05
}
Get system status including initialization state and current user information.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/volcengine/OpenViking/llms.txt
Use this file to discover all available pages before exploring further.
/health endpoint instead.X-API-Key header.
ok or error)curl -X GET http://localhost:1933/api/v1/system/status \
-H "X-API-Key: your-key"
{
"status": "ok",
"result": {
"initialized": true,
"user": "alice"
},
"time": 0.05
}
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"
}
}
curl --request GET \
--url https://api.example.com/api/v1/system/status{
"status": "ok",
"result": {
"initialized": true,
"user": "alice"
},
"time": 0.05
}