Open
Description
Fetching multiple tracks by ID
Attempting to query the search endpoint https://api.soundcloud.com/tracks?ids=1,2,3
.
I would like to be able to fetch multiple songs (which do not share a common query string) by their IDs in a single request rather than iteratively calling the /tracks/{trackId}
endpoint for each track. This would make the process much easier without spamming the API with repeated calls.
Current Behavior: querying /tracks?ids=1,2,3
returns an empty collection.
Desired Behavior: returns all tracks with specified ID in one collection.