Start Scan Post
curl --request POST \
--url https://rts-senthrex.slayers.tech/scan \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data 'domain=<string>'import requests
url = "https://rts-senthrex.slayers.tech/scan"
payload = { "domain": "<string>" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/x-www-form-urlencoded"
}
response = requests.post(url, data=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
Authorization: 'Bearer <token>',
'Content-Type': 'application/x-www-form-urlencoded'
},
body: new URLSearchParams({domain: '<string>'})
};
fetch('https://rts-senthrex.slayers.tech/scan', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"uuid": "<string>",
"status": "<string>",
"message": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}API Reference
Start scan (POST)
Start a scan by sending the domain (and optional mode) in a form-encoded body.
POST
/
scan
Start Scan Post
curl --request POST \
--url https://rts-senthrex.slayers.tech/scan \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data 'domain=<string>'import requests
url = "https://rts-senthrex.slayers.tech/scan"
payload = { "domain": "<string>" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/x-www-form-urlencoded"
}
response = requests.post(url, data=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
Authorization: 'Bearer <token>',
'Content-Type': 'application/x-www-form-urlencoded'
},
body: new URLSearchParams({domain: '<string>'})
};
fetch('https://rts-senthrex.slayers.tech/scan', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"uuid": "<string>",
"status": "<string>",
"message": "<string>"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Start scan (POST)
Starts a new scan for the provideddomain.
Body
application/x-www-form-urlencoded:
domain(required): the domain to scanmode(optional):full(default) ordiscovery
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
Successful Response
