Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iTunes Search Lookup for all a Developers Apps

Tags:

ios

iphone

itunes

Is there a way to use the iTunes Lookup to show all of the apps a Developer has? Eg:

https://itunes.apple.com/lookup?devid=123

I also tried:

http://itunes.apple.com/search?media=software&term=Developer Name

But that didn't work either. Ideas?

like image 497
Nic Hubbard Avatar asked Jan 30 '13 04:01

Nic Hubbard


People also ask

Does iTunes have an API?

The Search API allows you to place search fields in your website to search for content within the iTunes Store, App Store, iBooks Store and Mac App Store. You can search for a variety of content; including apps, iBooks, movies, podcasts, music, music videos, audiobooks, and TV shows.

How do I find an app store developer?

Finding developers People can search for developers directly on the App Store. Tapping a developer's name within search results leads to the developer's page, which highlights their latest release above their entire collection of apps and games.

Is iTunes API free?

Price: The iTunes Search API is offered for free.


2 Answers

To get the details of a developer,

https://itunes.apple.com/lookup?id=514675684

To get all apps by that developer,

https://itunes.apple.com/lookup?id=514675684&entity=software

To get the apps based on localization,

https://itunes.apple.com/lookup?id=514675684&entity=software&country=in

or, itunes.apple.com/in/lookup?id=514675684&entity=software

like image 70
KingofBliss Avatar answered Sep 28 '22 01:09

KingofBliss


If you want to search apps by developer name you need to include attribute=softwareDeveloper, like this: https://itunes.apple.com/search?term=milk+llc&entity=software&attribute=softwareDeveloper

(Thanks to Ted Hosmann's comment iTunes Search Lookup for all a Developers Apps for helping me figure this out.)

Hey, check this out. The documentation doesn't say you can do this but entity=softwareDeveloper will return a list of just developers: https://itunes.apple.com/search?term=milk+llc&entity=softwareDeveloper&attribute=softwareDeveloper

like image 45
bugloaf Avatar answered Sep 28 '22 00:09

bugloaf