R/get_domain_relationship.R
get_domain_relationship.Rd
Retrieve related objects to an Internet domain
get_domain_relationship(
domain = NULL,
relationship = "subdomains",
limit = NULL,
cursor = NULL,
...
)
domain name. String. Required.
relationship name. String. Required. Default is subdomains
.
For all the options see https://developers.virustotal.com/v3.0/reference#domains-relationships
Number of entries. Integer. Optional. Default is 10.
String. Optional.
Additional arguments passed to virustotal_GET
.
named list
set_key
for setting the API key
if (FALSE) { # \dontrun{
# Before calling the function, set the API key using set_key('api_key_here')
get_domain_relationship("https://www.google.com")
get_domain_relationship("https://www.goodsfwrfw.com") # Domain not found
} # }