Learn R Programming

virustotal (version 0.5.0)

domain_report: Get Domain Report

Description

Retrieves comprehensive analysis report for a given domain, including WHOIS information, DNS resolutions, detected URLs, and threat intelligence data.

Usage

domain_report(domain, ...)

Value

A virustotal_domain_report object containing domain analysis results including WHOIS data, DNS resolutions, detected URLs, categories, and threat intelligence

Arguments

domain

Domain name (character string). Required.

...

Additional arguments passed to virustotal_GET

References

https://docs.virustotal.com/reference/domains

See Also

set_key for setting the API key

Examples

Run this code
if (FALSE) {
# Set API key first
set_key('your_api_key_here')

# Get domain reports
report1 <- domain_report("google.com")
report2 <- domain_report("https://www.example.com/path")

print(report1)
summary(report1)
}

Run the code above in your browser using DataLab