# EPSS Exploit Prediction Score Scraper

**Use case:** 

Scrape EPSS exploit prediction scores for CVEs. Get probability and percentile data for vulnerability triage in structured JSON.

## Input

```json
{
  "cveId": "",
  "date": "",
  "minEpssScore": "",
  "minPercentile": "",
  "flattenTimeSeries": false,
  "maxItems": 5
}
```

## Output

```json
{
  "cve": {
    "label": "Cve",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "epss": {
    "label": "Epss",
    "format": "number"
  },
  "percentile": {
    "label": "Percentile",
    "format": "number"
  },
  "severity": {
    "label": "Severity",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [EPSS Exploit Prediction Scoring System Scraper](https://apify.com/parseforge/epss-exploit-prediction-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/epss-exploit-prediction-scraper) to learn more, explore other use cases, and run it yourself.