OSV record
The linked Open Source Vulnerability record.
GET/api/v1/cves/{cveId}/osv
The OSV (Open Source Vulnerability) record mapped to the CVE. The OSV corpus is still being onboarded, so this endpoint returns not_found (404) for every CVE today; the shape below documents what it will return once OSV data is live.
Parameters
| Name | In | Type | Description |
|---|---|---|---|
cveId | path | string | CVE identifier. |
Example request
curl "https://radicalnotion.ai/api/v1/cves/CVE-2025-55182/osv" \
-H "Authorization: Bearer $RN_TOKEN"Example response(OSV data is being onboarded; 404 today)
{
"error": "not_found",
"message": "No OSV records are linked to CVE-2025-55182."
}Response schema
| Field | Type | Description |
|---|---|---|
error | string | Error code — not_found while OSV data is being onboarded. |
message | string | Human-readable explanation. |
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. |