Reputation: 25239
Given
http://api.soundcloud.com/tracks.json?client_id=APIKEY&q=madonna&limit=2
There is any way to set limit 0,2 to get results form 0 to 2 or eg. limit 2,4 to get results form 2 to 4?
Upvotes: 0
Views: 286
Reputation: 25239
the parameter is offset
eg.
https://api.soundcloud.com/tracks.json?limit=10&offset=10&client_id=xxx
result: all songs from 10 to 20
Upvotes: 1