External DocumentationTo learn more, visit the Vanta documentation.
Basic Parameters
| Parameter | Description |
|---|---|
| After Due Date | Filter vulnerabilities due after a specific timestamp. |
| Before Due Date | Filter vulnerabilities due before a specific timestamp. |
| External Vulnerability ID | Filter vulnerabilities based on a specific external vulnerability ID. |
| Is Deactivated | Select to filter vulnerabilities by deactivation status. |
| Is Fix Available | Select to filter vulnerabilities that have an available fix. |
| Return All Pages | Automatically fetch all resources, page by page. |
| Severity | Filter vulnerabilities by severity. |
| Vulnerabilities Without SLAs | Select to filter vulnerabilities without an SLA due date. |
| Vulnerability Name | Filter vulnerabilities by name. |
Advanced Parameters
| Parameter | Description |
|---|---|
| Integration ID | Filter vulnerabilities by the vulnerability scanner that detected them. |
| Package Identifier | Filter vulnerabilities from a specific package by its ID. |
| Page Cursor | A cursor that marks the starting point for fetching the next page of results. Use the endCursor value from the pageInfo object in the previous response. |
| Page Size | The maximum number of items returned in a single execution. |
| Vulnerable Asset ID | Filter vulnerabilities by a specific asset ID. |
Example Output
{
"results": {
"pageInfo": {
"hasNextPage": true,
"hasPreviousPage": false,
"startCursor": "YXJyYXljb25uZWN0aW9uOjA=",
"endCursor": "YXJyYXljb25uZWN0aW9uOjE="
},
"data": [
{
"id": "a2f7e1b9d0c3f4e5a6c7b8d9",
"name": "CVE-2021-12345",
"description": "MariaDB before 10.6.2 allows an application crash because of mishandling of a pushdown from a HAVING clause to a WHERE clause.",
"integrationId": "Inspector",
"packageIdentifier": "package",
"vulnerabilityType": "COMMON",
"targetId": "targetId",
"firstDetectedDate": "2021-01-01T00:00:00.000Z",
"sourceDetectedDate": "2021-01-01T00:00:00.000Z",
"lastDetectedDate": "2021-01-01T00:00:00.000Z",
"severity": "CRITICAL",
"cvssSeverityScore": 9.8,
"scannerScore": 100,
"isFixable": true,
"remediateByDate": "2021-01-01T00:00:00.000Z",
"relatedVulns": [
"CVE-2021-12345"
],
"relatedUrls": [
"https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-12345"
],
"externalURL": "https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-12345",
"scanSource": "Not provided",
"deactivateMetadata": {
"deactivatedBy": "b2f7e1b9d0c3f4e5a6c7b123",
"deactivatedOnDate": "2021-01-01T00:00:00.000Z",
"deactivationReason": "fix is too hard to carry out",
"deactivatedUntilDate": null,
"isVulnDeactivatedIndefinitely": true
}
}
]
}
}