Get the report for a specific scan
curl --request GET \
--url https://rtswpscan.slayers.tech/report/{report_id} \
--header 'API-Key: <api-key>'import requests
url = "https://rtswpscan.slayers.tech/report/{report_id}"
headers = {"API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'API-Key': '<api-key>'}};
fetch('https://rtswpscan.slayers.tech/report/{report_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"error": "Unauthorized"
}{
"status": "pending"
}API Reference
Get report
Retrieve a scan report by ID.
GET
/
report
/
{report_id}
Get the report for a specific scan
curl --request GET \
--url https://rtswpscan.slayers.tech/report/{report_id} \
--header 'API-Key: <api-key>'import requests
url = "https://rtswpscan.slayers.tech/report/{report_id}"
headers = {"API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'API-Key': '<api-key>'}};
fetch('https://rtswpscan.slayers.tech/report/{report_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{}{
"error": "Unauthorized"
}{
"status": "pending"
}Get report
Retrieves the report for a previously initiated scan.Pending reports
If the report is not ready, the API may return404 with a pending status. Retry with backoff.