Skip to main content
GET
/
results
/
{scan_uuid}
Get Scan Results
curl --request GET \
  --url https://rts-senthrex.slayers.tech/results/{scan_uuid} \
  --header 'Authorization: Bearer <token>'
{
  "uuid": "<string>",
  "domain": "<string>",
  "status": "<string>",
  "mode": "<string>",
  "start_time": "2023-11-07T05:31:56Z",
  "end_time": "2023-11-07T05:31:56Z",
  "url": "<string>",
  "results": [],
  "summary": {}
}

Get scan results

Returns consolidated JSON findings for a scan, with optional filtering by scanner/tool type.

Query parameters

  • tool (optional): filter returned findings by scanner category

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

scan_uuid
string
required

Query Parameters

tool
string | null

Filter results by tool type (e.g. 'vulnerability_scanner', 'port_scanner', 'reconnaissance_scanner')

Response

Successful Response

Full JSON results for a completed or in-progress scan.

Attributes: uuid: Scan identifier. domain: Target domain. status: Current scan status. mode: Scan mode ("full" or "discovery"). start_time: Scan start timestamp. end_time: Scan end timestamp (if finished). url: Resolved URL for the target domain. results: List of individual scanner result objects. summary: High-level counts and metadata.

uuid
string
required
domain
string
required
status
string
required
mode
string | null
start_time
string<date-time> | null
end_time
string<date-time> | null
url
string | null
results
Results · object[]
summary
Summary · object