get_genre_artists {spotifyr} | R Documentation |
Search for Artists by Genre
Description
Get Spotify Catalog information about artists belonging to a given genre.
Usage
get_genre_artists(
genre = character(),
market = NULL,
limit = 20,
offset = 0,
authorization = get_spotify_access_token()
)
Arguments
genre |
Required. |
market |
Optional. |
limit |
Optional. |
offset |
Optional. |
authorization |
Required. A valid access token from the Spotify Accounts service. See the Web API authorization guide for more details. Defaults to |
Value
A data frame of the artists belonging to the genre with data and metadata about the artists in a tibble.
See Also
Other musicology functions:
get_artist_audio_features()
,
get_playlist_audio_features()
,
get_track_audio_analysis()
,
get_track_audio_features()
,
get_user_audio_features()
Examples
## Not run:
get_genre_artists('wonky')
## End(Not run)