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

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>.

Path Parameters

target_id
string<uuid>
required

UUID of the target whose findings should be listed

Query Parameters

severity
enum<string>

Filter by severity

Available options:
critical,
high,
medium,
low,
info
status
enum<string>
default:ACTIVE

Filter by finding workflow status. Defaults to ACTIVE.

Available options:
ACTIVE,
RESOLVED,
ARCHIVED
status_filter
enum<string>

Filter vulnerability status. vulnerable returns critical/high/medium/low findings, secured returns info findings, and all applies no severity-status filter.

Available options:
vulnerable,
secured,
all
order_by
enum<string>
default:created_at

Sort field for cursor pagination

Available options:
created_at,
severity
order_direction
enum<string>
default:desc

Sort direction for cursor pagination

Available options:
asc,
desc
limit
integer
default:25

Maximum number of findings to return

Required range: 1 <= x <= 100
cursor
string

Opaque cursor from pagination.next_cursor

Response

Findings returned successfully

findings
object[]
pagination
object