Skip to main content
POST
/
scan
Initiate a new scan
curl --request POST \
  --url https://rtswpscan.slayers.tech/scan \
  --header 'API-Key: <api-key>' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'url=<string>'
{
  "status": "success",
  "scan_id": "unique_report_id"
}

Start scan (POST)

Initiates a scan. Requires url and accepts an optional mode.

Fields

  • url (required): target URL to scan
  • mode (optional): normal or aggressive (defaults to normal if omitted)

Authorizations

API-Key
string
header
required

Body

application/x-www-form-urlencoded
url
string
required

URL to scan

mode
string

Mode of scanning: normal or aggressive (normal if empty)

Response

Scan initiated successfully

status
string
Example:

"success"

scan_id
string
Example:

"unique_report_id"