ITunes Search API page number for the query

Viewed 3310

Is there any way to get results of next page of a search query? When I give page parameter, I get the same results from ITunes as:

https://itunes.apple.com/search?country=us&limit=200&entity=software&term=a and https://itunes.apple.com/search?country=us&limit=200&entity=software&term=a&page=2

gives the same output. Giving page parameter works for customer reviews.

Is there any way to get the results of next page?

According to API documentation there is no way but I found a lot of useful answers which are not indicated in API documentation.

2 Answers

I found a way to query more records. There is a parameter called offset, which is not mentioned in API documentation.

https://itunes.apple.com/search?term=a&offset=25&limit=25

Enjoy!

Related