Retrieve a scan report for a given URL. If no scan report is available, set scan
to 1
to get a new report.
url_report(url = NULL, scan_id = NULL, scan = 1, ...)
url | URL. String. |
---|---|
scan_id | scan id for a particular url scan. String. |
scan | String. Optional. Can be 0 or 1. Default is |
... | Additional arguments passed to |
data.frame with 13 columns:
scan_id, resource, url, response_code, scan_date, permalink, verbose_msg, positives, total, .id, detected, result, detail
https://www.virustotal.com/en/documentation/public-api/
set_key
for setting the API key
if (FALSE) { # Before calling the function, set the API key using set_key('api_key_here') url_report("http://www.google.com") url_report(scan_id = "ebdd15c397d2b0c6f50c3f2df531357d1201ff5976802316405e60880d6bf5ec-1478786749") }