Skip to content
Start in Cloud

Get system overview

GET
/api/admin/system
curl --request GET \
--url https://hitkeep.com/api/admin/system \
--cookie hk_token=<hk_token>

Returns version, runtime mode, uptime, public URL, and operator feature switch status.

System overview

Media type application/json
object
config_flags
object
key
additional properties
any
enabled_features
Array<object>
object
detail

Optional non-sensitive runtime detail, such as target type or path.

string
enabled
required
boolean
key
required

Stable feature key.

string
public_url
string
runtime_mode
string
uptime
string
version
string
Example generated
{
"config_flags": {},
"enabled_features": [
{
"detail": "example",
"enabled": true,
"key": "example"
}
],
"public_url": "example",
"runtime_mode": "example",
"uptime": "example",
"version": "example"
}