Sha256: 83a30fd302e8c21591b5f43b20cadd62a3a4f4505170ab7efd71597e4fcebc1d

Contents?: true

Size: 615 Bytes

Versions: 1

Compression:

Stored size: 615 Bytes

Contents

module SpyFu
  module Api
    class AdHistory < Base
      # More information: https://www.spyfu.com/apis/ad_history_api/domain_ad_history
      BASE_ENDPOINT = 'ad_history_api'

      # Get ad history by domain
      def domain_ad_history(params)
        send_get "domain_ad_history", params
      end

      # Get ad history by domain with metrics
      def domain_ad_history_with_metrics(params)
        send_get "domain_ad_history_with_metrics", params
      end

      # Get ad history by domain by Term
      def term_ad_history(params)
        send_get "term_ad_history", params
      end

    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
spyfu-0.1.0 lib/spyfu/api/ad_history.rb