search_song {geniusr} | R Documentation |
Search songs on Genius
Description
The Genius API lets you search hosted content (all songs). Use
search_song()
to return song_id
, song_name
,
lyrics_url
and artist_id
for all unique song matches
found using a search term.
Usage
search_song(search_term, n_results = 10, access_token = genius_token())
Arguments
search_term |
A character string to search for |
n_results |
Maximum no. of search results to return |
access_token |
Genius' client access token, defaults to |
Value
a tibble
See Also
Other search:
search_artist()
,
search_genius()
Examples
## Not run:
search_song(search_term = "Gucci", n_results = 50)
## End(Not run)
[Package geniusr version 1.2.1 Index]