Get Scan Results
curl --request GET \
--url https://rts-senthrex.slayers.tech/results/{scan_uuid} \
--header 'Authorization: Bearer <token>'import requests
url = "https://rts-senthrex.slayers.tech/results/{scan_uuid}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://rts-senthrex.slayers.tech/results/{scan_uuid}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"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": {}
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}API Reference
Get scan results
Retrieve structured JSON results for a scan UUID.
GET
/
results
/
{scan_uuid}
Get Scan Results
curl --request GET \
--url https://rts-senthrex.slayers.tech/results/{scan_uuid} \
--header 'Authorization: Bearer <token>'import requests
url = "https://rts-senthrex.slayers.tech/results/{scan_uuid}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://rts-senthrex.slayers.tech/results/{scan_uuid}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"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": {}
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}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
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Query Parameters
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.
