Skip to content

Get CVE Metadata on Multiple CVEs

There is an endpoint to get the data from multiple CVEs in one call (max 100)

text
POST https://api.feedly.com/v3/entities/.mget

The JSON body of the request is a list of the CVE ids.

text
["CVE-2021-26084", "CVE-2021-22005"]

OpenAPI definition

json
{
  "openapi": "3.1.0",
  "info": {
    "title": "Entities API",
    "version": "1.0"
  },
  "servers": [
    {
      "url": "https://api.feedly.com/v3/entities"
    }
  ],
  "components": {
    "securitySchemes": {
      "sec0": {
        "type": "apiKey",
        "in": "header",
        "name": "Authorization",
        "x-bearer-format": "bearer"
      }
    }
  },
  "security": [
    {
      "sec0": []
    }
  ],
  "paths": {
    "/.mget": {
      "post": {
        "summary": "Get CVE Metadata on Multiple CVEs",
        "description": "",
        "operationId": "get-multiple-cves",
        "parameters": [
          {
            "name": "withStats",
            "in": "query",
            "description": "You can add a parameter query withStats=true to the previous endpoint to get access to the References and Chatter articles. The previous data will also be included.",
            "schema": {
              "type": "boolean",
              "default": false
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "RAW_BODY"
                ],
                "properties": {
                  "RAW_BODY": {
                    "type": "string",
                    "description": "Paste a list of CVEs (limited to 100)",
                    "default": "[\"CVE-2021-26084\", \"CVE-2021-22005\"]",
                    "format": "json"
                  }
                }
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "200",
            "content": {
              "application/json": {
                "examples": {
                  "Result": {
                    "value": "{}"
                  }
                },
                "schema": {
                  "type": "object",
                  "properties": {}
                }
              }
            }
          },
          "400": {
            "description": "400",
            "content": {
              "application/json": {
                "examples": {
                  "Result": {
                    "value": "{}"
                  }
                },
                "schema": {
                  "type": "object",
                  "properties": {}
                }
              }
            }
          }
        },
        "deprecated": false
      }
    }
  },
  "x-readme": {
    "headers": [],
    "explorer-enabled": true,
    "proxy-enabled": true
  },
  "x-readme-fauxas": true,
  "_id": "655693b2a3fad70012606ec2:65569b012fb78f000f947bd8"
}