Issue a search query to the Discogs database using any number of (optional) parameters.

discogs_search(params, n_results = NULL,
  access_token = discogs_api_token())

Arguments

params

named list of parameters (see SEARCH API docs for available parameters)

n_results

(optional) set limit on no. of results (numeric; NULL by default)

access_token

Discogs personal access token, defaults to discogs_api_token.

Examples

# NOT RUN {
discogs_search(params = list(release_title = "Purple Rain",
artist = "Prince"), n_results = 10)
# }