Method: Echowrap::API::Artist#artist_top_terms

Defined in:
lib/echowrap/api/artist.rb

#artist_top_terms(options = {}) ⇒ Array<Echowrap::Term>

Returns a list of the overall top terms.

Examples:

Return an array of terms

Echowrap.artist_top_terms

Parameters:

  • options (Hash) (defaults to: {})

    A customizable set of options.

Options Hash (options):

  • :results (Integer)

    The desired number of results to return, the valid range is 0 to 100, with 15 as the default

Returns:

Raises:

See Also:



334
335
336
# File 'lib/echowrap/api/artist.rb', line 334

def artist_top_terms(options={})
  objects_from_response(Echowrap::Term, :get, '/api/v4/artist/top_terms', :terms, options)
end