GET
/
enrichments
/
nvd
curl --request GET \
  --url https://api.leen.dev/v1/enrichments/nvd
{
  "count": 123,
  "total": 123,
  "items": [
    {
      "id": "<string>",
      "sourceIdentifier": "<string>",
      "published": "<string>",
      "lastModified": "<string>",
      "vulnStatus": "<string>",
      "cveTags": [
        {
          "sourceIdentifier": "<string>",
          "tags": [
            "<string>"
          ]
        }
      ],
      "descriptions": [
        {
          "lang": "<string>",
          "value": "<string>"
        }
      ],
      "metrics": {
        "cvssMetricV2": [
          {
            "source": "<string>",
            "type": "<string>",
            "cvssData": {
              "version": "<string>",
              "vectorString": "<string>",
              "accessVector": "<string>",
              "accessComplexity": "<string>",
              "authentication": "<string>",
              "confidentialityImpact": "<string>",
              "integrityImpact": "<string>",
              "availabilityImpact": "<string>",
              "baseScore": 123
            },
            "baseSeverity": "<string>",
            "exploitabilityScore": 123,
            "impactScore": 123,
            "acInsufInfo": true,
            "obtainAllPrivilege": true,
            "obtainUserPrivilege": true,
            "obtainOtherPrivilege": true,
            "userInteractionRequired": true
          }
        ],
        "cvssMetricV31": [
          {
            "source": "<string>",
            "type": "<string>",
            "cvssData": {
              "version": "<string>",
              "vectorString": "<string>",
              "attackVector": "<string>",
              "attackComplexity": "<string>",
              "privilegesRequired": "<string>",
              "userInteraction": "<string>",
              "scope": "<string>",
              "confidentialityImpact": "<string>",
              "integrityImpact": "<string>",
              "availabilityImpact": "<string>",
              "baseScore": 123,
              "baseSeverity": "<string>"
            },
            "exploitabilityScore": 123,
            "impactScore": 123
          }
        ]
      },
      "weaknesses": [
        {
          "source": "<string>",
          "type": "<string>",
          "description": [
            {
              "lang": "<string>",
              "value": "<string>"
            }
          ]
        }
      ],
      "configuration": {
        "nodes": [
          {
            "operator": "<string>",
            "negate": true,
            "cpeMatch": [
              {
                "vulnerable": true,
                "criteria": "<string>",
                "matchCriteriaId": "<string>"
              }
            ]
          }
        ]
      },
      "references": [
        {
          "url": "<string>",
          "source": "<string>"
        }
      ]
    }
  ]
}

Query Parameters

cve
string | null
updatedSince
string | null

Datetime filter, only return items updated since this datetime. Example format: 2021-01-01T00:00:00+00:00

limit
integer
default:
100

Limit size (page size)

Required range: x >= 0
offset
integer
default:
0

Offset index (starting index of page)

Required range: x >= 0
excludeTotal
boolean
default:
false

Skips returning the total rows, total is set to null when true

Response

200
application/json
Successful Response
count
integer
required

Number of items return in the response

items
object[]
required

List of items returned in the response

total
integer | null

Total number of items that can be returned