Corpus snapshot
Headline totals for the whole corpus.
GET/api/v1/stats
A snapshot of the entire corpus: total CVEs and the KEV count, capability totals (exploit, patch, detection), the severity distribution, and the SSVC decision distribution.
Example request
curl "https://radicalnotion.ai/api/v1/stats" \
-H "Authorization: Bearer $RN_TOKEN"Example response
{
"totals": {
"cves": 351711,
"kev": 1651,
"with_exploit": 77727,
"with_patch": 195643,
"with_detection": 91385
},
"severity": {
"critical": 48075,
"high": 130345,
"medium": 160180,
"low": 11392,
"none": 1719
},
"ssvc": {
"track": 151831,
"track_star": 12697,
"attend": 985,
"act": 522
}
}Response schema
| Field | Type | Description |
|---|---|---|
totals.cves / kev | integer | Total CVEs and KEV-listed CVEs. |
totals.with_exploit / with_patch / with_detection | integer | CVEs with each capability. |
severity | object | CVE counts per severity band. |
ssvc | object | CVE counts per SSVC decision (track, track_star, attend, act). |
Responses
| Status | Meaning |
|---|---|
200 | Success. |
400 | A path or query parameter failed validation. |
401 | Missing or invalid access token. |
429 | Rate limit exceeded. |