I am trying to get the whosampled id of a song with the method song/identify.
For example, i have the request http://developer.echonest.com/api/v4/song/identify?version=4.2&api_key=&bucket=id:whosampled&bucket=tracks&code=
Results :
response: { status: { version: "4.2", code: 0, message: "Success" }, songs: [ { title: "I'm In It", artist_name: "Kanye West", artist_id: "ARRH63Y1187FB47783", tracks: [ ], score: 54, id: "SORLCOF13F6B824879", message: "OK (match type 6)", artist_foreign_ids: [ { catalog: "whosampled", foreign_id: "whosampled:artist:18" } ] } ] } }
The problem is that the tracks[] list is always empty, so i cannot get the whosampled id of a track. (it seems there is no match between the echonest track id and the whosampled id.
Could you help me?