Get system overview
GET
/api/admin/system
const url = 'https://hitkeep.com/api/admin/system';const options = {method: 'GET', headers: {cookie: 'hk_token=<hk_token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}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.
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”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"}