# CISA KEV Exploited Vulnerabilities Monitor API (`koalastuff/cisa-kev-priority-monitor`) Actor

Search CISA's Known Exploited Vulnerabilities catalog by vendor, product, ransomware use, CWE, due date, or keyword. Export remediation-ready security data.

- **URL**: https://apify.com/koalastuff/cisa-kev-priority-monitor.md
- **Developed by:** [Timo Schmidt](https://apify.com/koalastuff) (community)
- **Categories:** Developer tools, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 kev entries

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## CISA KEV Priority & Remediation Monitor

Search CISA's Known Exploited Vulnerabilities catalog by vendor, product, ransomware use, CWE, due date, or keyword. Export remediation-ready security data.

This independent Actor is not endorsed by CISA or DHS. It does not use CISA or DHS logos or seals.

### Try this first

Start with the example input below to find recent KEV entries associated with known ransomware use. Results are written to the default dataset with remediation dates, overdue state, and source links.

[![CISA KEV Priority & Remediation Monitor icon](https://api.apify.com/v2/key-value-stores/JoHkELuyqjk6waZJX/records/icon-cisa-kev-priority-monitor.png)](https://apify.com/koalastuff/cisa-kev-priority-monitor)

#### Example output

[![Example output preview](https://api.apify.com/v2/key-value-stores/JoHkELuyqjk6waZJX/records/preview-cisa-kev-priority-monitor.svg)](https://apify.com/koalastuff/cisa-kev-priority-monitor)

This preview is generated from a checked-in official-source fixture. It shows the normalized output shape without inventing live demand or results.

### Input and output

Search entries added within 1 to 3,650 days and return up to 5,000 results. Each row contains the CVE, vendor, product, vulnerability name and description, required action, CISA dates, overdue state, ransomware-use value, CWEs, source references, NVD link, catalog version, CC0 license, attribution, and retrieval time.

```json
{"daysAddedBack":30,"ransomwareUse":"Known","maxResults":100}
```

### Reliability and limits

- Official CISA KEV JSON feed only; no scraping, browser, proxy, account, key, or paid service.
- Exactly one bounded feed request per run, local filters, stable-CVE deduplication, required-field checks, and hard output limit.
- Reference URLs are exported as catalog data but never fetched. Their content remains subject to each third-party site's policies and licenses.
- CISA updates the living catalog. This tool supports prioritization but does not replace asset-specific security assessment or applicable directives.

### Pricing

- Actor start: USD 0.00005
- Normalized KEV entry: USD 0.001

A two-result Apify smoke run on 256 MB used USD 0.0000987618 of platform resources and completed in 3.624 seconds. The Actor is publicly available with the pricing above.

### Source and reuse

Source: <https://www.cisa.gov/known-exploited-vulnerabilities-catalog>. CISA distributes the KEV database under [CC0 1.0 Universal](https://www.cisa.gov/sites/default/files/licenses/kev/license.txt). Every row preserves source, license, and non-endorsement information.

### Support

Report reproducible problems with the input, run link, CVE, and expected field.

### Related Actors

- [NVD CVE Vulnerability Monitor](https://apify.com/koalastuff/nvd-cve-vulnerability-monitor) for CVSS, CPE, CWE, and reference enrichment.
- [FDA Enforcement Report Finder](https://apify.com/koalastuff/fda-enforcement-report-finder) for product-safety enforcement research.

# Actor input Schema

## `daysAddedBack` (type: `integer`):

Only entries CISA added within this rolling UTC window.

## `vendor` (type: `string`):

Case-insensitive vendor substring.

## `product` (type: `string`):

Case-insensitive product substring.

## `keyword` (type: `string`):

Search CVE, vendor, product, name, description, action, and notes.

## `ransomwareUse` (type: `string`):

Filter CISA's Known or Unknown value.

## `cwe` (type: `string`):

Exact CWE such as CWE-79.

## `dueOnOrBefore` (type: `string`):

Optional inclusive remediation date in YYYY-MM-DD format.

## `maxResults` (type: `integer`):

Hard output and billing limit.

## Actor input object example

```json
{
  "daysAddedBack": 30,
  "maxResults": 100
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("koalastuff/cisa-kev-priority-monitor").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("koalastuff/cisa-kev-priority-monitor").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call koalastuff/cisa-kev-priority-monitor --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=koalastuff/cisa-kev-priority-monitor",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/QKcOvuVh5Pnheq6wf/builds/KARImG6HauF7afDUn/openapi.json
