---
title: "Get system overview REST API | HitKeep"
description: "Reference for the HitKeep REST API operation Get system overview, including request parameters, responses, and authentication notes."
canonical: "https://hitkeep.com/api/operations/apiadminsystem/"
---

# Get system overview REST API

GET

/api/admin/system

FetchcURL

```
const url = 'http://127.0.0.1:25737/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 http://127.0.0.1:25737/api/admin/system \
  --cookie hk_token=<hk_token>
```

-

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

## Authorizations

- **[cookieAuth](https://hitkeep.com/api/#cookieauth)**

## Responses

### 200

System overview

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

##### Examplegenerated

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

[Previous Delete site (admin)](https://hitkeep.com/api/operations/apiadminsitesid/)[Next List user activation](https://hitkeep.com/api/operations/apiadminsystemactivation/)
