Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to search the iOS app store online?

Tags:

ios

app-store

I want to programmatically track my app's search ranking on Apple's app store. Is there any API or website to do this, outside of the 'App Store' app on my iPhone?

like image 203
Asif Sheikh Avatar asked Aug 06 '12 23:08

Asif Sheikh


People also ask

Can you browse the Apple App Store online?

Apple maintains public-facing webpages for all apps in the App Store at itunes.apple.com. If you use Google or an equivalent search engine and limit the results to that domain, you can effectively search the App Store from any web browser.

Can you browse the App Store on browser?

Android users can head to play.google.com to search and browse Android apps and games from any computer browser, but unfortunately for iOS users – iPhone and iPad – there's no dedicated URL to do the same.

How do I browse the App Store?

Open the Fnd website > enter your search query in the big search bar > hit Enter. 2. Now you'll see the top three search results in apps, music, movies, TV, books, Mac and podcasts.


2 Answers

the following websites allow searching the iOS app store.

  1. https://theappstore.org
  2. http://fnd.io
like image 105
computingfreak Avatar answered Sep 17 '22 15:09

computingfreak


I'm not sure how the exact ranking is reflected, but Apple now provides an JSON API call that you can make.

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

This includes the ability to add in a callback parameter so you can even incorporate it into a web app without having to parse the results on your server.

The end API call would looks something like this:

http://itunes.apple.com/search?term=props&entity=software&country=US&callback=lkasdfj

like image 21
Soshmo Avatar answered Sep 18 '22 15:09

Soshmo