AI reports
AI-generated analysis reports for a CVE.
GET/api/v1/cves/{cveId}/reports
The catalogue of Radical Notion AI reports written for the CVE — narrative analyses, detection guidance, IT-discovery instructions, and more. Only the latest final report of each type is returned, newest first.
The report_text body is omitted from this list by default to keep the payload light; pass full=true to inline every report body, or fetch one report by id from the endpoint below.
Parameters
| Name | In | Type | Description |
|---|---|---|---|
cveId | path | string | CVE identifier. |
prompt | query | string | Only reports of one report type (the prompt_name from /reports/types). |
full | query | boolean | Inline the full report_text on each report instead of an excerpt. Default: false. |
Example request
curl "https://radicalnotion.ai/api/v1/cves/CVE-2025-55182/reports" \
-H "Authorization: Bearer $RN_TOKEN"Example response(default shape — report_text omitted, an excerpt shown instead)
{
"cve_id": "CVE-2025-55182",
"count": 2,
"reports": [
{
"id": "7bfd3d67-bed2-4171-8e86-bf2977460556",
"report_type": "IT Discovery Instructions Update",
"model": "gemini-3-pro-preview",
"created_at": "2025-12-15T15:18:13Z",
"char_count": 13032,
"excerpt": "# CVE-2025-55182 Vulnerability Verification Guide\n## React Server Components Remote Code Execution (React2Shell)\n\n---\n\n## Executive Summary\n\n**CVE-2025-55182** is a **CRITICAL** pre-authentication Remote Code Execution (RCE) vulnerability affecting React Server Components version 19.x. This vulnerability has been actively exploited by China-nexus threat actors and was added to CISA's Known Exploited Vulnerabilities (KEV) catalog on December 5th, 2025.\n\n**Business Impact:** Successful exploitatio"
},
{
"id": "4285b6de-1c7f-4688-9e00-800213f5b95f",
"report_type": "Update Detection Option Report",
"model": "deepseek-v4-pro",
"created_at": "2026-04-25T21:50:06Z",
"char_count": 18302,
"excerpt": "# Cyber Threat Intelligence Report: CVE-2025-55182 (React2Shell)\n\n**Date of Analysis:** 25 April 2026 \n**CVE ID:** CVE-2025-55182 \n**CVSS v3.1 Score:** 10.0 (Critical) \n**Vector:** AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H \n**CWE:** CWE-502 (Deserialization of Untrusted Data) \n**CISA KEV Status:** Added 2025-12-05 (Active Exploitation) \n**Attribution:** China‑nexus cyber threat groups (per AWS Security Blog)\n\n---\n\n## 1. Vulnerability Overview\n\nCVE-2025-55182 is a **pre‑authentication remote code"
}
]
}Response schema
| Field | Type | Description |
|---|---|---|
count | integer | Number of reports returned. |
reports[].id | string | Report UUID — pass to the single-report endpoint. |
reports[].report_type | string | Report type (prompt_name from the /reports/types catalog). |
reports[].model | string | Model that authored the report. |
reports[].created_at | string | When the report was generated (ISO 8601). |
reports[].char_count | integer | Length of the full report body in characters. |
reports[].excerpt | string | Leading excerpt of the body (present unless full=true). |
reports[].report_text | string | Full report body — present only with full=true. |
Responses
| Status | Meaning |
|---|---|
200 | Success. |
400 | A path or query parameter failed validation. |
401 | Missing or invalid access token. |
403 | The CVE is outside your access tier. |
404 | No record exists for the CVE. |
429 | Rate limit exceeded. |
A CVE with no reports returns count 0.
{
"cve_id": "CVE-2025-55182",
"count": 0,
"reports": []
}