class PassiveTotal::Client::Tracker
Public Instance Methods
search(query:, type:)
click to toggle source
Retrieves hosts that employ user tracking mechanisms served from another given host. api.passivetotal.org/api/docs/#api-Trackers-GetV2TrackersSearch
@param [String] query host from which trackers originate @param [String] type type of trackers to retrieve; a type other than the offically supported ones may be supplied
@return [Hash]
# File lib/passivetotal/clients/tracker.rb, line 15 def search(query:, type:) params = { query: query, type: type, }.compact _get("/trackers/search", params) { |json| json } end