library(httr)
library(jsonlite)
response <- httr::GET("https://gorest.co.in/public/v2/users", accept_json())
data <- content(response, type = "text")
df <- fromJSON(data_json)
df
view raw request_demo.R hosted with ❤ by GitHub