List findings from a scan batch
list_findingsRetrieve scan findings in paginated batches from a prior IaC scan, filterable by severity, SOC 2 control, or unmapped status, then request full details for any finding.
Instructions
Pages through findings from a previous scan_iac call. Returns lightweight rows;
call get_finding for full detail on one.
Findings with UNKNOWN severity are never filtered out by minSeverity. Checkov's open-source build often omits severity metadata, and dropping those findings would under-report real misconfigurations.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max rows to return. Default 50. | |
| cursor | No | Opaque cursor from a previous call's nextCursor. | |
| batchId | Yes | Batch ID returned by scan_iac. | |
| controlId | No | Only findings mapped to this SOC 2 control. | |
| minSeverity | No | Only findings at or above this severity (UNKNOWN always included). | |
| unmappedOnly | No | Only findings no rule could map to a control. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| total | Yes | ||
| batchId | Yes | ||
| findings | Yes | ||
| returned | Yes | ||
| nextCursor | Yes |