Skip to main content
GET
/
logs
/
{scan_uuid}
Get Scan Logs
curl --request GET \
  --url https://rts-senthrex.slayers.tech/logs/{scan_uuid} \
  --header 'Authorization: Bearer <token>'
{
  "scan_uuid": "<string>",
  "log_file_path": "<string>",
  "log_content": "<string>",
  "log_size_bytes": 123
}

Get scan logs

Returns detailed log data including the log file path, full log content, and size metadata.

Authorizations

Authorization
string
header
required

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

Path Parameters

scan_uuid
string
required

Response

Successful Response

Response containing scan execution logs.

Attributes: scan_uuid: Scan identifier. log_file_path: Filesystem path to the log file. log_content: Full text of the execution log. log_size_bytes: Size of the log content in bytes.

scan_uuid
string
required
log_file_path
string
required
log_content
string
required
log_size_bytes
integer
required