# EPSS vulnerability monitor with history

**Use case:** 

Monitor CVE exploit probability history and filter high-risk vulnerabilities for SOC and patch workflows.

## Input

```json
{
  "cveIds": [
    "CVE-2023-34362",
    "CVE-2021-44228",
    "CVE-2024-3094"
  ],
  "cveText": "CVE-2023-34362\nCVE-2021-44228",
  "minPercentile": 0.85,
  "includeHistory": true,
  "maxItems": 50
}
```

## Output

```json
{
  "cve": {
    "label": "CVE"
  },
  "epss": {
    "label": "EPSS"
  },
  "percentile": {
    "label": "Percentile"
  },
  "date": {
    "label": "Score date"
  },
  "riskBucket": {
    "label": "Risk bucket"
  },
  "status": {
    "label": "Status"
  },
  "message": {
    "label": "Message"
  },
  "historyDays": {
    "label": "History days"
  },
  "sourceUrl": {
    "label": "Source URL"
  },
  "fetchedAt": {
    "label": "Fetched at"
  }
}
```

## About this Actor

This example demonstrates how to use [EPSS CVE Risk Enricher](https://apify.com/automation-lab/epss-cve-risk-enricher) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/epss-cve-risk-enricher) to learn more, explore other use cases, and run it yourself.