Get Scan Json
curl --request GET \
--url https://rts-senthrex.slayers.tech/json/{scan_uuid} \
--header 'Authorization: Bearer <token>'import requests
url = "https://rts-senthrex.slayers.tech/json/{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/json/{scan_uuid}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}API Reference
Get raw scan JSON
Retrieve the raw consolidated JSON artifact for a scan UUID.
GET
/
json
/
{scan_uuid}
Get Scan Json
curl --request GET \
--url https://rts-senthrex.slayers.tech/json/{scan_uuid} \
--header 'Authorization: Bearer <token>'import requests
url = "https://rts-senthrex.slayers.tech/json/{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/json/{scan_uuid}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Get raw scan JSON
Returns the raw stored JSON artifact for the scan (mega.json) exactly as generated by the backend.