VirustotalAPI::Base
A class for '/ip_addresses' API
Find an IP.
IP
@param [String] ip address The IP to find. @param [String] api_key The key for virustotal @return [VirustotalAPI::IPReport] Report
# File lib/virustotal_api/ip.rb, line 13 def self.find(ip, api_key) report = perform("/ip_addresses/#{ip}", api_key) new(report) end