> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blocklight.co/llms.txt
> Use this file to discover all available pages before exploring further.

# GET /api/v1/system/status

> Detailed system status and statistics

Get detailed system status including core engine statistics.

## Endpoint

```
GET /api/v1/system/status
```

## Example Request

```bash theme={null}
curl http://localhost:8000/api/v1/system/status
```

## Response

```json theme={null}
{
  "status": "running",
  "version": "1.0.0",
  "core": {
    "rules_total": 37,
    "rules_enabled": 15,
    "transactions_processed": 1523,
    "findings_generated": 42,
    "avg_evaluation_time_ms": 1.2
  }
}
```

## Response Fields

| Field                         | Type   | Description                                  |
| ----------------------------- | ------ | -------------------------------------------- |
| `status`                      | string | Core engine status (`running`, `stopped`)    |
| `version`                     | string | Blocklight version                           |
| `core.rules_total`            | number | Total number of loaded rules                 |
| `core.rules_enabled`          | number | Number of enabled rules                      |
| `core.transactions_processed` | number | Total transactions processed                 |
| `core.findings_generated`     | number | Total findings generated                     |
| `core.avg_evaluation_time_ms` | number | Average rule evaluation time in milliseconds |
