Reputation: 321
According to the Soundcloud documentation (https://developers.soundcloud.com/docs/api/guide#search,
"Some resource types, such as sounds, can be filtered by fields like license, duration or tag_list."
Is there some list in existence of what attributes can be filtered like this? For example, say I want to find artists with the name of 'billy' that have between 100 and 1000 followers. I would expect I could do (using the Ruby client)
client.get('/users', q:'billy', followers_count: {from:1000, to:10000})
But those followers_count limits are not respected in the results. Why not?
Upvotes: 0
Views: 185
Reputation: 26758
The page you link says
For a complete list of search fields and filters, please see the API Reference for the resource type you'd like to search.
Upvotes: 2