Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JSON output for Google Play search query via API call? [closed]

Is there an API to search Google Play for apps of a certain name (e.g., food) and return the output as JSON?

For instance, we would love an API that permits parsing of queries like this: https://play.google.com/store/search?q=food&c=apps

We need something for JavaScript to get called from a web page.

None of the Google Play APIs we have seen allow this.

like image 893
Crashalot Avatar asked Jun 24 '12 23:06

Crashalot


People also ask

How can I get Google search results in JSON?

GET YOUR GOOGLE SEARCH API KEY Accessing Google's Custom Search JSON API requires the use of an API key. To get this key, navigate to the Custom Search JSON API page and click Get a Key. Choose an existing project, or create a new one, and click Next. Note and copy your API key.

How do I access API JSON?

To receive JSON from a REST API endpoint, you must send an HTTP GET request to the REST API server and provide an Accept: application/json request header. The Accept header tells the REST API server that the API client expects JSON.

What is custom Search json API?

The Custom Search JSON API lets you develop websites and applications to retrieve and display search results from Programmable Search Engine programmatically. With this API, you can use RESTful requests to get either web search or image search results in JSON format.

Is there any Google Search API?

Getting Started. Our Google Search API allows you to scrape search results pages in realtime. To scrape the results, you only need two things: your API key, available here.


2 Answers

Found a JSON API from AppAware: https://groups.google.com/forum/?fromgroups#!topic/android-market-api/-F2QfvGt1nU

Note: it only checks apps, which is sufficient for our purposes.

like image 67
Crashalot Avatar answered Oct 22 '22 13:10

Crashalot


You might want to check this thread : Getting Data from Android Play Store:

  • Embedded JAR solution
  • A C# project
  • Many sites offers to scrap the Google play content
like image 33
Regis Avatar answered Oct 22 '22 14:10

Regis