Severity distribution
CVE counts by severity band.
GET/api/v1/stats/severity
The corpus-wide severity distribution as an ordered array — one entry per band with its CVE count — convenient for charting.
Example request
curl "https://radicalnotion.ai/api/v1/stats/severity" \
-H "Authorization: Bearer $RN_TOKEN"Example response
{
"count": 5,
"severity": [
{
"severity": "critical",
"count": 48075
},
{
"severity": "high",
"count": 130345
},
{
"severity": "medium",
"count": 160180
},
{
"severity": "low",
"count": 11392
},
{
"severity": "none",
"count": 1719
}
]
}Response schema
| Field | Type | Description |
|---|---|---|
count | integer | Number of severity bands. |
severity[].severity | string | Band name: critical, high, medium, low, none. |
severity[].count | integer | CVEs in the band. |
Responses
| Status | Meaning |
|---|---|
200 | Success. |
400 | A path or query parameter failed validation. |
401 | Missing or invalid access token. |
429 | Rate limit exceeded. |