A random query like
https://api.soundcloud.com/tracks.json?genre=Rnbhiphop
gives something like
[
{
"kind":"track",
"id":161532719,
(...)
"artwork_url":null,
(...)
},
{
"kind":"track",
"id":161532718,
(...)
"artwork_url":null,
(...)
},
(..)
]
In many, many cases, artwork_url is null, although this is not consistent.
However, when looking at the single track id 161532719 (first in list above) with
http://api.soundcloud.com/tracks/161532719.json
we get
{
"kind":"track",
"id":161532719,
(...)
"artwork_url":"http://i1.sndcdn.com/artworks-000087026689-ogd56p-large.jpg?e76cf77",
(...)
}
... which strangely enough reveals that track 161532719 HAS a valid artwork_url. The same is the case with many other tracks.
Is this a bug, or am I doing something wrong here?