---
title: "Info"
method: GET
path: "/euvd/{euvd_id}"
tags: ["This endpoint delivers detailed information on a particular EUVD when you provide its unique EUVD ID."]
---

# Info

`GET /euvd/{euvd_id}`

Get information about a specific vulnerability by its EUVD ID.

Parameters:
- `euvd_id` (str): The EUVD identifier (e.g. EUVD-2024-02040).

Returns:
- An EUVDWithCVE object with EUVD fields at the top level and CVE data nested under `cve`.
  Please refer to the `EUVDWithCVE` schema for more details.

## Path parameters

- `euvd_id` string, required

## Response `200`

Successful Response

- EUVDWithCVE
  - `euvd_id` string, nullable, required — The EUVD identifier from the European Union Vulnerability Database.
  - `description` string, nullable, required — Vulnerability description as published by EUVD.
  - `published_time` string, date-time, nullable, required — Date the vulnerability was published in EUVD.
  - `cvss` number, nullable, required — CVSS base score as recorded by EUVD.
  - `cvss_version` string, nullable, required — CVSS version used for the EUVD base score.
  - `epss` number, nullable, required — EPSS score as recorded by EUVD.
  - `assigner` string, nullable, required — Organisation that assigned this EUVD entry.
  - `references` string[], nullable, required — References listed in the EUVD entry.
  - `products` string[], nullable, required — Products listed in the EUVD entry.
  - `vendors` string[], nullable, required — Vendors listed in the EUVD entry.
  - `cve` CVEData
    - `id` string, required — The unique identifier assigned to a reported vulnerability, adhering to the CVE-YYYY-NNNNN format, which helps in tracking and referencing vulnerabilities systematically.
    - `summary` string, nullable, required — A brief overview of the vulnerability, providing essential information on what it entails, the affected systems, and the potential impact in clear, understandable English.
    - `cvss` number, nullable, required — The Common Vulnerability Scoring System (CVSS) score, newest version, which ranges from 0 to 10, quantifies the severity of the vulnerability based on various factors such as exploitability, impact, and ease of attack. A score of 10 indicates the highest severity.
    - `cvss_version` number, nullable, required — The version of the CVSS used in the cvss field.
    - `cvss_v2` number, nullable, required — The Common Vulnerability Scoring System (CVSS) score version 2, which ranges from 0 to 10.
    - `cvss_v3` number, nullable, required — The Common Vulnerability Scoring System (CVSS) score version 3, which ranges from 0 to 10.
    - `cvss_v4` number, nullable, required — The Common Vulnerability Scoring System (CVSS) score version 4, which ranges from 0 to 10.
    - `epss` number, nullable, required — The Exploit Prediction Scoring System (EPSS) score, a probabilistic measure between 0 and 1.
    - `ranking_epss` number, nullable, required — This score ranks the vulnerability in terms of its EPSS score relative to all other scored vulnerabilities.
    - `kev` boolean, required — A boolean value indicating whether the vulnerability is known to be exploited in the wild.
    - `propose_action` string, nullable — Suggested actions or mitigation strategies to address the vulnerability.
    - `ransomware_campaign` string, nullable — Indicates if the vulnerability has been exploited in ransomware campaigns.
    - `references` string[], required — A list of references providing further details related to the vulnerability.
    - `published_time` string, date-time, nullable, required — The date and time when the vulnerability was published, in the format YYYY-MM-DDTHH:MM:SS, with UTC time zone.
    - `cpes` string[], required — A list of Common Platform Enumeration (CPE) identifiers affected by this vulnerability.

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/shodan/apis/cvedb.md) · [All operations](https://skmtc.net/shodan/apis/cvedb/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/shodan/cvedb/versions/21a0c9a80453/schema)
