Skip to main content
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>'
{
  "uuid": "<string>",
  "status": "<string>",
  "message": "<string>"
}

Start scan (POST)

Starts a new scan for the provided domain.

Body

application/x-www-form-urlencoded:
  • domain (required): the domain to scan
  • mode (optional): full (default) or discovery

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/x-www-form-urlencoded
domain
string
required
mode
string
default:full

Response

Successful Response

Response returned when a scan is started.

Attributes: uuid: Unique identifier assigned to the scan. status: Current status of the scan (e.g. "pending"). message: Human-readable message about the scan initiation.

uuid
string
required
status
string
required
message
string
required