Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get info from the Apple iTunes «App Store» and «Mac App Store» [closed]

Tags:

I'm searching a solution to get all the information/retrieve all data from the iTunes «App Store» and «Mac App Store» from Apple to a given App-ID … Is there a way to read out all the infos like App-Description, Price, Icon, Developer, Ratings etc. from the Stores?

like image 369
albuvee Avatar asked Apr 09 '11 11:04

albuvee


People also ask

Is there a way to see App Store history?

Android. You can see your Android app history on your phone or on the web. On your Android phone, open the Google Play store app and tap the menu button (three lines). In the menu, tap My apps & games to see a list of apps currently installed on your device.

How do I open an app that is no longer in the App Store?

First, fire up the App Store, then tap on the account icon in the top right corner. From there, tap on “Purchased.” To see all the apps that aren't already on your phone or iPad (which is the likely scenario if you're trying to pull something that's no longer in the App Store), tap on “Not on this iPhone/iPad.”

Can I view all apps that have been downloaded on an Apple ID?

You can view the apps you purchased using your Apple ID in the Purchased list on any of your Mac computers. If you don't want certain apps to appear in that list, you can hide them.

How do I find my iTunes account?

In the iTunes app on your PC, choose Account > View My Account, then sign in.


2 Answers

Try using the iTunes Search API which will give you a nice JSON object representing the app. The lookup section is the one you are looking for:
https://affiliate.itunes.apple.com/resources/documentation/itunes-store-web-service-search-api

Example query for the Stack Overflow App: https://itunes.apple.com/lookup?id=1155618808

like image 137
ChaosCoder Avatar answered Sep 30 '22 20:09

ChaosCoder


You can get all details from apple itunes using this url: https://itunes.apple.com/search?term=xxx&country=us&entity=software

Where you can get json object as result. So you can get all details of every app in apple itunes by decode the json object.

I think this url will help you.

like image 24
phponwebsites Avatar answered Sep 30 '22 18:09

phponwebsites