You should install "httr" and "jsonlite" modules and then it will be easy to manipulate with API data. Use install.packages() and library(). And then something like:
request = GET("https://api.chess.com/pub/player/davidjayjackson")
data = fromJSON(rawToChar(request$content))
Howdy,
Does anyone have a example of using R language with the API?
TIA,
David