# GetSearchStatusV1

Get status of search

**GET** `/humio/api/v1/repositories/{repository}/queryjobs/{id}`
**Scope:** NGSIEM: READ

## Parameters

- **repository** (path string) — name of repository
- **id** (path string) — id of query

## Example (Python)

```python
from falconpy import NGSIEM

falcon = NGSIEM(client_id=CLIENT_ID,
                client_secret=CLIENT_SECRET
                )

response = falcon.get_search_status(repository="string",
                                    id="string",
                                    search_id="string",
                                    paginationLimit=integer,
                                    paginationOffset=integer,
                                    pagination_limit=integer,
                                    pagination_offset=integer)
print(response)
```

## Response

```json
{
  "cancelled": false,
  "done": false,
  "events": [
    {}
  ],
  "filesUsed": [
    {}
  ],
  "filterMatches": [
    {}
  ],
  "metaData": {
    "costs": {
      "liveCost": 0.0,
      "liveCostRate": 0.0,
      "staticCost": 0.0,
      "staticCostRate": 0.0
    },
    "digestFlow": {
      "ingestTimeKnownGood": 0,
      "maxIngestLatency": 0,
      "minIngestTimeIncluded": 0
    },
    "eventCount": 0,
    "extraData": {},
    "fieldOrder": [],
    "filterQuery": {},
    "isAggregate": false,
    "pollAfter": 0,
    "processedBytes": 0,
    "processedEvents": 0,
    "queryEnd": 0,
    "querySpent": {
      "day": {},
      "hour": {},
      "oneMinute": {},
      "tenMinutes": {}
    },
    "queryStart": 0,
    "queuedMillis": 0,
    "quotaTotalSpent": {
      "day": {},
      "hour": {},
      "oneMinute": {},
      "tenMinutes": {}
    },
    "responderVHost": 0,
    "resultBufferSize": 0,
    "timeMillis": 0,
    "totalWork": 0,
    "warning": "string",
    "warnings": [],
    "workDone": 0
  },
  "queryEventDistribution": {
    "bucket_first_bucket": "string",
    "bucket_last_bucket": "string",
    "bucket_span_humanized": "string",
    "bucket_span_millis": "string"
  },
  "warnings": [
    {
      "category": "string",
      "classification": "string",
      "code": "string",
      "message": "string"
    }
  ]
}
```
