Start Scan Get
curl --request GET \
--url https://rts-senthrex.slayers.tech/scan \
--header 'Authorization: Bearer <token>'import requests
url = "https://rts-senthrex.slayers.tech/scan"
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/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 (GET)
Start a scan by sending the domain (and optional mode) as query parameters.
GET
/
scan
Start Scan Get
curl --request GET \
--url https://rts-senthrex.slayers.tech/scan \
--header 'Authorization: Bearer <token>'import requests
url = "https://rts-senthrex.slayers.tech/scan"
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/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 (GET)
Starts a new scan for the provideddomain query parameter.
Query parameters
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.
Query Parameters
Domain to scan
Scan mode: 'full' or 'discovery'
Response
Successful Response
