Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ITunes Search API page number for the query

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.

like image 822
Soner ALTIN Avatar asked May 25 '17 09:05

Soner ALTIN


1 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!

like image 171
Marian Przyszedł Avatar answered Nov 16 '22 17:11

Marian Przyszedł