---
title: "Get a list of CVE details"
method: POST
path: "/cve/list"
tags: ["🧩 CVE"]
---

# Get a list of CVE details

`POST /cve/list`

Get CVE details, from a list passed as parameter

## Request body

- object — List of CVE ids you want
  - `cveIds` string[]
  - `onlyScore` boolean — Only send score of the cve, and not the whole detailed list
  - `minScore` number — Only send CVE with a score higher than the value
  - `maxScore` number — Only send CVE with a score lower than the value
  - `publishedDate` string, date-time — Only send CVE with a publication date more recent than the value

## Response `200`

CVE list

- object
  - `result` 'success' | 'error', required — Result of the request
  - `action` 'getCVEList', required — The id of the action
  - `data` object, required
    - `CVEs` CveDetails[], required
      - `id` string, cve id — CVE id
      - `publishedDate` string, date-time — Date the CVE was published
      - `lastModifiedDate` string, date-time — last Date the CVE was modified
      - `description` string — CVE Description
      - `cweIds` string[] — List of CWE (Common Weakness Enumeration) of the CVE
      - `cvssv3` object — CVSS V3 of the CVE
        - `baseScore` number — CVSS V3 base score
        - `vector` string — CVSS V3 vector
        - `baseSeverity` 'critical' | 'high' | 'medium' | 'low' | 'none' — CVSS V3 Severity
      - `cvssv2` object — CVSS V2 of the CVE
        - `baseScore` integer — CVSS V2 base score
        - `vector` string — CVSS V2 vector

---

[API](https://skmtc.net/rudder/apis/rudder-api.md) · [All operations](https://skmtc.net/rudder/apis/rudder-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/rudder/rudder-api/revisions/eab988254fba/schema)
