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

# Get ingest volume REST API

GET

/api/admin/system/ingest

FetchcURL

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

-

Returns recent hit, event, rejection, spam, and hit-rate counters across the instance, including tenant analytics databases.

## Authorizations

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

## Responses

### 200

System ingest stats

application/json

object

**hits_per_second**

number format: double

**recent_events**

integer

**recent_hits**

integer

**recent_rejections**

integer

**recent_spam**

integer

##### Examplegenerated

```
{
  "hits_per_second": 1,
  "recent_events": 1,
  "recent_hits": 1,
  "recent_rejections": 1,
  "recent_spam": 1
}
```

[Previous Run import staging cleanup](https://hitkeep.com/api/operations/apiadminsystemimport-stage-cleanuprun/)[Next Get mail status](https://hitkeep.com/api/operations/apiadminsystemmail/)
