Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iTunes Search API -- is there a way to get all apps (iPhone, iPad, Mac) for a certain keyword?

This seems counter-intuitive :

http://www.apple.com/itunes/affiliates/resources/documentation/itunes-store-web-service-search-api.html

I was expecting that http://itunes.apple.com/search?term=Avatar+Cameron&media=software&country=FR&limit=15 would return all apps on iTunes, regardless of the specific platform (iPhone, iPad-only, Mac).

However, it does not seem to be the case.

Is there any other way to retrieve both iPhone and iPad apps than requesting entity=software, then entity=iPadSoftware, and merge the results?

like image 325
julien_c Avatar asked Jul 27 '11 17:07

julien_c


People also ask

How do I get different apps on my iPhone and iPad?

Question: Q: I want different apps on my iPhone than my ipad To install/keep different apps on your devices, simply log in into your App Store account on each device then download only the apps you want on each device.

What is Connect app on iPhone?

Connect lets you discover, analyse, visualize, and integrate insight and data to quickly advance your next decision. Features: - Follow market trends. Browse the latest analysis of events and trends shaping your industry from experts in energy, chemical, economics, and country risk.

Where is itunes and app store in settings on iPad?

Answer: A: Goto settings >> Store on your iPad.


2 Answers

You can use a comma to separate the values for entity:

&entity=software,iPadSoftware
like image 164
halmstrz Avatar answered Oct 13 '22 21:10

halmstrz


https://itunes.apple.com/lookup?id=YOURID&entity=software will give all software results for the YOURID in question (iPhone, iPad, Mac).

You can get YOURID by searching manually for https://itunes.apple.com/search?term=YOURCOMPANY&entity=software and then text searching on the page for "artistId"

like image 21
SG1 Avatar answered Oct 13 '22 19:10

SG1