Soundcloud API throttling.

I am currently experimenting with the SoundCloud API and noticed that my GET requests for the / tracks resource never return more than 200 results in one go. A few questions about this:

  • Is this limit intentional?
  • Is there a way to increase this limit?
  • If not, what is the best way to get around this? is there an easy way to get some sort of continuation / pagination parameter so that if more than 200 tracks match my request, I can issue a new request to get the next set of matches?
+3


source to share


1 answer


Pagination from API documentation. Try going to options limit

and offset

. The maximum for limit

is 200 and the max for offset

is 8000.



+7


source







All Articles