Initiate a new scan
curl --request GET \
--url https://rtswpscan.slayers.tech/scan \
--header 'API-Key: <api-key>'import requests
url = "https://rtswpscan.slayers.tech/scan"
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/scan', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "success",
"scan_id": "unique_report_id"
}{
"error": "Unauthorized"
}API Reference
Start scan (GET)
Initiate a scan using query parameters.
GET
/
scan
Initiate a new scan
curl --request GET \
--url https://rtswpscan.slayers.tech/scan \
--header 'API-Key: <api-key>'import requests
url = "https://rtswpscan.slayers.tech/scan"
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/scan', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "success",
"scan_id": "unique_report_id"
}{
"error": "Unauthorized"
}Start scan (GET)
Initiates a scan using query parameters. Requiresurl and accepts an optional mode.