{% extends 'layouts/api-accordion-child'                     %}
{% set id     = "search"                                     %}
{% set title  = "/api/search/&lt;vendor&gt;/&lt;product&gt;" %}
{% set method = "GET"                                        %}
{% set args   = [('vendor', "Vendor name", "microsoft"), ('product', "Product name", "excel")] %}

{% block desc %}
When vendor and product are specified, this API call returns a list of CVEs related to the product.
The output of the browse call can be used for this.
{% endblock %}

{% block output %}
[
  {
    "Modified": {
      "$date": 1480347506210
    },
    "Published": {
      "$date": 1478743189440
    },
    "access": {
      "authentication": "NONE",
      "complexity": "MEDIUM",
      "vector": "NETWORK"
    },
    "cvss": "9.3",
    "cvss-time": {
      "$date": 1478772824700
    },
    "cwe": "CWE-119",
    "id": "CVE-2016-7236",
    "impact": {
      "availability": "COMPLETE",
      "confidentiality": "COMPLETE",
      "integrity": "COMPLETE"
    },
  ...
{% endblock %}
