I'd like to paginate lookup result. So can I set offset in lookup of iTunes API?
The API document says no offset parameter, but, in search API, we can set offset likes below.
- https://itunes.apple.com/search?term=hello&limit=2&offset=0
- https://itunes.apple.com/search?term=hello&limit=2&offset=1
- https://itunes.apple.com/search?term=hello&limit=2&offset=2
The above, we can get paginated result by 2 items.
So I thought I can do it same things in lookup API but couldn't.
- https://itunes.apple.com/lookup?id=909253&entity=song&limit=2&offset=0
- https://itunes.apple.com/lookup?id=909253&entity=song&limit=2&offset=1
- https://itunes.apple.com/lookup?id=909253&entity=song&limit=2&offset=2
The above, we get same result. It seems offset parameter was ignored.
How can I get a paginated result of lookup API?