Search for music tracks on the Google Play Store through the API

I am writing a label application. They would like to have a list of all their albums that are published on the Google Play store.

Is there any way to get data from the play store. What are the names, album covers, etc.? On iOS, you can even access preview samples from iTunes. Is this possible with Android? Or will Amazon provide such a service?

I found several unofficial APIs that handle application search. Is there one that can be used for music?

+6
source share
3 answers

you can try android-market-api . This is a third-party api. according to their documentation

  • You can view the market from any medium or locale you want.
  • Search for applications using keywords or package name.
  • Get information about the application using the application identifier.
  • Get comments using the app id.
  • Get screenshots and PNG icon
+2
source

Here is a UNofficial google api that meets your requirements and is open source.

Android Music API

This is not an official api. This library allows you to query directly the official Android server servers to search for information, search for applications, etc.

Below are the library functions.

Features:

1) You can view the market on any media or locale you want.
2) Search for applications using keywords or package name.
3) Retrieve application information using the application identifier.
4) Get comments using the application identifier.
5) Get screenshots and PNG icon.

+2
source

A bit late for the party, but I just finished this:

Google music search

This is a PHP class that escapes music search. I looked high and low for the Google APIs, but it doesn't seem to be alone.

+1
source

All Articles