module Datarank class Client # Module containing methods for interacting with a topic's reach data module Reach # Fetch reach counts for topic by day # # @param slug [String] A topic's unique identifier slug def reach_daily slug get "/topics/#{slug}/reach/daily" end end end end