Genres and types filters not working in Soundcloud API?
This link does not return tracks from the rock genre as described in this post: Using the genres filter on Soundcloud API Is this something that recently broke? I'm using the Python SDK and have tried various calls to get the filter to work, and currently I can only get the created_at filter to be respected. Here is the python code: track_page=client.get('/tracks', created_at={'from':'2013-01-01 00:00:00','to':'2013-01-07 00:00:00'}, genre='house', types=['recording','remix','original'], limit=limit_size, offset=offset) The relevant documentation is here i just found a solution, add q='*' in