This is what I have:
$.ajax({
type:'get',
url: 'https://services.rdio.com/api/1/',
dataType: "JSONP",
method: 'getTopCharts'
success: function(data) {
console.log(data);
}
})
I'm not very good with using APIs. I would like to get the top charts in json format. Right now this is what I see in the console with an x beside it:
Do I need to use an API key? In the docs it says does not require user authentication. So how do I get my list?