Skip to content

Get Scans Comparison

Request

Compares two scans within an organization and returns a structured diff of findings, including per-finding diff type (ADDED, REMOVED, MODIFIED, UNCHANGED), aggregate stats, and field-level change details for modified findings.

Security
bearer-key
Path
orgUuidstringrequired

org UUID (from the Mend App: Administration General > Organization UUID).

Query
sourceScanUuidstringrequired

UUID of the source (baseline) scan

targetScanUuidstring

UUID of the target (comparison) scan; defaults to the project's latest scan when omitted

typestringrequired

Finding category to compare

Enum:"security""legal""library"
GET
/api/v3.0/orgs/{orgUuid}/scans/compare
curl -i -X GET \
  'https://baseUrl/api/v3.0/orgs/{orgUuid}/scans/compare?sourceScanUuid=string&targetScanUuid=string&type=security' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'

Responses

OK

Bodyapplication/json
supportTokenstring(Support Token)
Example:"1171c60d"
responseobject(ScanDiffResponseDTOV3)
Response
{ "supportToken": "1171c60d", "response": { "source": {}, "target": {}, "stats": {}, "findings": [] } }