Most-affected vendors
The vendors with the most CVEs.
GET/api/v1/stats/vendors
The vendors affected by the most CVEs across the corpus, ranked by count — the top of the vendor exposure list.
Parameters
| Name | In | Type | Description |
|---|---|---|---|
limit | query | integer | Number of vendors to return, 1–25. Default: 7. |
Example request
curl "https://radicalnotion.ai/api/v1/stats/vendors?limit=5" \
-H "Authorization: Bearer $RN_TOKEN"Example response
{
"count": 5,
"vendors": [
{
"vendor": "Microsoft, Inc",
"count": 25637
},
{
"vendor": "Linux",
"count": 20683
},
{
"vendor": "Google",
"count": 15673
},
{
"vendor": "Apple Inc.",
"count": 14775
},
{
"vendor": "Oracle Corporation",
"count": 11803
}
]
}Response schema
| Field | Type | Description |
|---|---|---|
count | integer | Number of vendors returned. |
vendors[].vendor | string | Vendor display name. |
vendors[].count | integer | CVEs affecting the vendor. |
Responses
| Status | Meaning |
|---|---|
200 | Success. |
400 | A path or query parameter failed validation. |
401 | Missing or invalid access token. |
429 | Rate limit exceeded. |