I use the following in my attempt to get a list of album release from Hank Mobley, a Blue Note jazz musician:
library(magrittr);library(httr)
releasesHM<-httr::GET("https://api.discogs.com/artists/135872/releases")
This result is error free and I get 15k of data, but I can't seem to identify the content in the 10-item list that results:
Response [https://api.discogs.com/artists/135872/releases]
Date: 2019-01-09 14:19
Status: 200
Content-Type: application/json
Size: 15.7 kB
discogs says I should have the title and year of each release from this artist. Can anyone offer a solution/guidance?
Thank you!