Skip to main content
GET
/
scan
Start Scan Get
curl --request GET \
  --url https://rts-senthrex.slayers.tech/scan \
  --header 'Authorization: Bearer <token>'
{
  "uuid": "<string>",
  "status": "<string>",
  "message": "<string>"
}

Start scan (GET)

Starts a new scan for the provided domain query parameter.

Query parameters

  • 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.

Query Parameters

domain
string
required

Domain to scan

mode
string
default:full

Scan mode: 'full' or 'discovery'

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