ITunes Search API page number for the query

4k views Asked by At

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

There are 2 answers

1
Nishant Bhindi On BEST ANSWER

Actually there is no pagination in apple search API. It will only return maximum first 200 records.

Below is reference URL for same:

https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api/#searching

Thank you.

4
Marian Przyszedł On

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!