Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Finding a list of all the android apps on the market

is there a way of getting access to the details of each one programatically?

like image 240
Will Avatar asked Dec 29 '10 19:12

Will


1 Answers

There is an open source project called Android Market API which allows you to do the following:

  • You can browse market with any carrier or locale you want.
  • Search for apps using keywords or package name.
  • Retrieve an app info using an app ID.
  • Retrieve comments using an app ID.
  • Get PNG screenshots and icon

It is located here: http://code.google.com/p/android-market-api/

Hope this helps you out. =)

like image 53
geeknik Avatar answered Oct 06 '22 05:10

geeknik