Safe Haskell | None |
---|---|
Language | Haskell2010 |
Lastfm tag API
This module is intended to be imported qualified:
import qualified Network.Lastfm.Tag as Tag
- getInfo :: Request f (Tag -> APIKey -> Ready)
- getSimilar :: Request f (Tag -> APIKey -> Ready)
- getTopAlbums :: Request f (Tag -> APIKey -> Ready)
- getTopArtists :: Request f (Tag -> APIKey -> Ready)
- getTopTags :: Request f (APIKey -> Ready)
- getTopTracks :: Request f (Tag -> APIKey -> Ready)
- getWeeklyArtistChart :: Request f (Tag -> APIKey -> Ready)
- getWeeklyChartList :: Request f (Tag -> APIKey -> Ready)
- search :: Request f (Tag -> APIKey -> Ready)
Documentation
getSimilar :: Request f (Tag -> APIKey -> Ready) Source
Search for tags similar to this one. Returns tags ranked by similarity, based on listening data.
getTopAlbums :: Request f (Tag -> APIKey -> Ready) Source
Get the top albums tagged by this tag, ordered by tag count.
getTopArtists :: Request f (Tag -> APIKey -> Ready) Source
Get the top artists tagged by this tag, ordered by tag count.
getTopTags :: Request f (APIKey -> Ready) Source
Fetches the top global tags on Last.fm, sorted by popularity (number of times used)
getTopTracks :: Request f (Tag -> APIKey -> Ready) Source
Get the top tracks tagged by this tag, ordered by tag count.
getWeeklyArtistChart :: Request f (Tag -> APIKey -> Ready) Source
Get an artist chart for a tag, for a given date range. If no date range is supplied, it will return the most recent artist chart for this tag.