Skip to main content
GET
/
v1
/
findings
List Findings
curl --request GET \
  --url https://api.mindfort.app/v1/findings \
  --header 'Authorization: Bearer <token>'
{
  "findings": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "title": "<string>",
      "severity": "critical",
      "severity_score": 123,
      "created_at": "2023-11-07T05:31:56Z",
      "target_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ],
  "total": 123,
  "limit": 123,
  "offset": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.mindfort.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key generated from the MindFort dashboard. Pass as Authorization: Bearer <your-api-key>.

Query Parameters

target_id
string<uuid>

Optional target UUID to filter findings

severity
enum<string>

Filter by severity

Available options:
critical,
high,
medium,
low,
info
sort_by
enum<string>
default:severity

Sort mode for results

Available options:
severity,
created_at
limit
integer
default:25

Maximum number of findings to return

Required range: 1 <= x <= 100
offset
integer
default:0

Number of records to skip for offset pagination

Required range: x >= 0

Response

Findings returned successfully

findings
object[]
total
integer

Total active findings matching the query

limit
integer

Maximum findings returned

offset
integer

Number of findings skipped