July 21st, 2025

GET /api/v2/vulns
GET /api/v2/scan/:scan_id
Weβve simplified the structure of the response payload for the endpoints listed above by removing the results array and introducing a flattened findings array instead.
Easier to parse β You no longer need to loop through nested results objects.
Cleaner output β All relevant vulnerability information is now directly accessible in a single array (findings).
Improved performance β Smaller payloads and fewer nesting levels.
{
"results": [
{
"scanner": "sast",
"findings": [
{
"id": "...",
"vuln": "...",
"severity": "...",
...
}
]
}
]
}{
"findings": [
{
"id": "...",
"scanner": "sast",
"vuln": "...",
"severity": "...",
...
}
]
}If youβre consuming these APIs, please update your client-side logic or integrations to expect a flat findings array instead of nested results.findings.