Play Store Scraper API Reference

API Overview

Play Store Scraper is a simple tool for scraping app store data. It returns the app name, description, price, and more. To use this API, you need an API key. You can get one by creating a free account and visiting your dashboard.

Important: Ensure that this API is enabled from within your dashboard to use it in your application. If not, you may receive a 403 error

View API in Directory

Client Libaries

To get started with minimal code, most of our APIs are available through client libraries:

run in postman button npm logo pypi logo nuget logo

Get App Info

5 Token

Get app details from the Play Store using the app ID that is shown in the Play Store URL

	
#GET Request
https://api.apiverve.com/v1/playstorescraper?appid=com.google.android.apps.maps&country=us	

	
					

x-api-key (required)

This is a required header on every request. Your API Key is found from within your dashboard

accept

This is an optional header. Set the value to application/json, application/xml, or application/yaml


appidstring(required)

The app ID as shown in the Play Store to get the app details (e.g., com.google.android.apps.maps)

countrystring(required)

The country code that the app is available in (e.g., us, gb).


Sample Request
	
import requests

url = "https://api.apiverve.com/v1/playstorescraper"

querystring = {'appid': 'com.google.android.apps.maps', 'country': 'us'}

headers = {
	"x-api-key": "YOUR_API_KEY"
}

response = requests.get(url, headers=headers, params=querystring)

print(response.json())
	
							
	
using System.Net.Http.Headers;
var client = new HttpClient();
var request = new HttpRequestMessage
{
	Method = HttpMethod.Get,
	RequestUri = new Uri("https://api.apiverve.com/v1/playstorescraper?appid=com.google.android.apps.maps&country=us"),
	Headers =
	{
		{ "x-api-key", "YOUR_API_KEY" }
	},
};
using (var response = await client.SendAsync(request))
{
	response.EnsureSuccessStatusCode();
	var body = await response.Content.ReadAsStringAsync();
	Console.WriteLine(body);
}
	
							
	
const data = null;

const xhr = new XMLHttpRequest();
xhr.withCredentials = true;

xhr.addEventListener('readystatechange', function () {
	if (this.readyState === this.DONE) {
		console.log(this.responseText);
	}
});

xhr.open('GET', 'https://api.apiverve.com/v1/playstorescraper?appid=com.google.android.apps.maps&country=us');
xhr.setRequestHeader('x-api-key', 'YOUR_API_KEY');
xhr.setRequestHeader('Content-Type', 'application/json');
xhr.setRequestHeader('Accept', 'application/json');

xhr.send(data);
	
							
	
const request = require('request');

const options = {
  method: 'GET',
  url: 'https://api.apiverve.com/v1/playstorescraper?appid=com.google.android.apps.maps&country=us',
  headers: {
    'x-api-key': 'YOUR_API_KEY'
  }
};

request(options, function (error, response, body) {
	if (error) throw new Error(error);

	console.log(body);
});
	
							
	
HttpRequest request = HttpRequest.newBuilder()
		.uri(URI.create("https://api.apiverve.com/v1/playstorescraper?appid=com.google.android.apps.maps&country=us"))
		.header("x-api-key", "YOUR_API_KEY")
		.method("GET", HttpRequest.BodyPublishers.noBody())
		.build();
HttpResponse response = HttpClient.newHttpClient().send(request, HttpResponse.BodyHandlers.ofString());
System.out.println(response.body());
	
							
	
import Foundation

let headers = [
	"x-api-key": "YOUR_API_KEY"
]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.apiverve.com/v1/playstorescraper?appid=com.google.android.apps.maps&country=us")! as URL,
				cachePolicy: .useProtocolCachePolicy,
                timeoutInterval: 10.0)

request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
	if (error != nil) {
		print(error as Any)
	} else {
		let httpResponse = response as? HTTPURLResponse
		print(httpResponse)
	}
})

dataTask.resume()
	
							
	
curl --request GET \
	--url 'https://api.apiverve.com/v1/playstorescraper?appid=com.google.android.apps.maps&country=us' \
	--header 'x-api-key: YOUR_API_KEY'
	
							

Sample Response
	
{
  "status": "ok",
  "error": null,
  "data": {
    "title": "Google Maps",
    "description": "Navigate your world faster and easier with Google Maps.  Over 220 countries and territories mapped and hundreds of millions of businesses and places on the map.  Get real-time GPS navigation, traffic, and transit info, and explore local neighborhoods by knowing where to eat, drink and go - no matter what part of the world you’re in.  Get there faster with real-time updates • Beat traffic with real-time ETAs and traffic conditions • Catch your bus, train, or ride-share with real-time transit info • Save time with automatic rerouting based on live traffic, incidents, and road closures  Discover places and explore like a local • Discover local restaurant, events, and activities that matter to you • Know what’s trending and new places that are opening in the areas you care about • Decide more confidently with “Your match,” a number on how likely you are to like a place • Group planning made easy.  Share a shortlist of options and vote in real-time • Create lists of your favorite places and share with friends • Follow must-try places recommended by local experts, Google, and publishers • Review places you’ve visited. Add photos, missing roads and places.  More experiences on Google Maps • Offline maps to search and navigate without an internet connection • Street View and indoor imagery for restaurants, shops, museums and more • Indoor maps to quickly find your way inside big places like airports, malls and stadiums  * Some features not available in all countries  * Also available for Wear OS. Add a Tile on your Wear OS watch to quickly access home and work.  * Navigation isn't intended to be used by oversized or emergency vehicles",
    "descriptionHTML": "Navigate your world faster and easier with Google Maps.  Over 220 countries and territories mapped and hundreds of millions of businesses and places on the map.  Get real-time GPS navigation, traffic, and transit info, and explore local neighborhoods by knowing where to eat, drink and go - no matter what part of the world you’re in.

Get there faster with real-time updates
• Beat traffic with real-time ETAs and traffic conditions
• Catch your bus, train, or ride-share with real-time transit info
• Save time with automatic rerouting based on live traffic, incidents, and road closures

Discover places and explore like a local
• Discover local restaurant, events, and activities that matter to you
• Know what’s trending and new places that are opening in the areas you care about
• Decide more confidently with “Your match,” a number on how likely you are to like a place
• Group planning made easy. Share a shortlist of options and vote in real-time
• Create lists of your favorite places and share with friends
• Follow must-try places recommended by local experts, Google, and publishers
• Review places you’ve visited. Add photos, missing roads and places.

More experiences on Google Maps
• Offline maps to search and navigate without an internet connection
• Street View and indoor imagery for restaurants, shops, museums and more
• Indoor maps to quickly find your way inside big places like airports, malls and stadiums

* Some features not available in all countries

* Also available for Wear OS. Add a Tile on your Wear OS watch to quickly access home and work.

* Navigation isn't intended to be used by oversized or emergency vehicles", "summary": "Real-time GPS navigation & local suggestions for food, events, & activities", "installs": "10,000,000,000+", "minInstalls": 10000000000, "maxInstalls": 17346799843, "score": 3.6164036, "scoreText": "3.6", "ratings": 18631588, "reviews": 664596, "histogram": { "1": 4783186, "2": 977263, "3": 1102974, "4": 1508081, "5": 10260068 }, "price": 0, "free": true, "currency": "USD", "priceText": "Free", "available": true, "offersIAP": false, "androidVersion": "VARY", "androidVersionText": "Varies with device", "androidMaxVersion": "VARY", "developer": "Google LLC", "developerId": "5700313618786177705", "developerEmail": "[email protected]", "developerWebsite": "http://maps.google.com/about/", "developerAddress": "1600 Amphitheatre Parkway, Mountain View 94043", "developerLegalName": "Google LLC", "developerLegalEmail": "[email protected]", "developerLegalAddress": "1600 Amphitheatre Pkwy, Mountain View, CA 94043, United States", "developerLegalPhoneNumber": "+1 650-253-0000", "privacyPolicy": "http://www.google.com/policies/privacy", "developerInternalID": "5700313618786177705", "genre": "Travel & Local", "genreId": "TRAVEL_AND_LOCAL", "categories": [ { "name": "Travel & Local", "id": "TRAVEL_AND_LOCAL" } ], "icon": "https://play-lh.googleusercontent.com/Kf8WTct65hFJxBUDm5E-EpYsiDoLQiGGbnuyP6HBNax43YShXti9THPon1YKB6zPYpA", "headerImage": "https://play-lh.googleusercontent.com/FQx43QTaAqeOtoTLylK3WIs7ySKuGS8AurXNA1Kj34m6w6CjavF4Oj3s5DB6xZZ7DS63", "screenshots": [ "https://play-lh.googleusercontent.com/FK7X8M1BCF0Ji6-TkHaww2qP8FEdIrvofW6qDRMCNjszqq5XiVmGNCV00KXSSuETMS8", "https://play-lh.googleusercontent.com/PJkiXQiABQxpVdHMpvOux53wP2TVuYg0fq9K5JYYDO336nvbX-0ShhHWzZGnagmWlw", "https://play-lh.googleusercontent.com/6K2sbPKNLgAKWrEUFDLkoumlAoeCH491rS7b_yEWdxwEXgLslsXg64Uq7UC-_n9u0eo", "https://play-lh.googleusercontent.com/GxNGfSXkAxOEvgOXPKNLp373_MqNS9rPVYlCi-1JekFD3N3JdT3g3d4z_5dxWaFvtKg", "https://play-lh.googleusercontent.com/iXEapPYDZQvo6qFLwlcEpau5qSrNECycERn5mPtr2t4DAIfNJSj3h0FM_t74By7bI9rb", "https://play-lh.googleusercontent.com/rbE2lxgiuVV_CjldaGNdBKEZRizx97rEO_yl4ihk7pXh5y8cRf7FROsmw5OLtQrcFA", "https://play-lh.googleusercontent.com/CZqlsBWxW65_RNZVPzMlWqQ6dg9meysacASXxgH1IJr81mnXCbsr4qQg5wwkD7xQ8Vk", "https://play-lh.googleusercontent.com/TUsqChyQ0N92woJa_wI3CBcE3s2_AVOYqKhzBJhF0_kbJIrbexoX8WLMhzxu9DiQ4EM", "https://play-lh.googleusercontent.com/eAjXucba0K068B4vftcTCP_my9c1Jc2cVoBHJ4iOKC0sCmJbfH4DA2apFXW_afEedJK5", "https://play-lh.googleusercontent.com/CtsHG3eIDWZLPvfx9EHyvy1C-a79N93mAH1SE7KpBwgfWUUfgMFhideRpcynzXWNzQ", "https://play-lh.googleusercontent.com/pY3-lUJH2B4EiUIW0Os8rSGtIXi2D1SBBpUUsODoTK55Rqq_nk8mFqeX-LmQdRDTCQ", "https://play-lh.googleusercontent.com/XB6MPAFJh0nh3NzSygUU5vdp53HO4gcYaaw3ifeao-i5b0nmL2sm1i0ewWkJN1PKXQ", "https://play-lh.googleusercontent.com/bV3JqTSIxqcbqPEcEEKLIfBO3Z04Q0vtMRYXFTKH3pspCe0da0s-HtbcVy9IwX23qOA", "https://play-lh.googleusercontent.com/DLpbKo2JM6C7mCM5CRjhYyNRFvE5LB6EpW2ke7JaGklg-rO2ZCHvOepMgZpvQEjiHw", "https://play-lh.googleusercontent.com/ZJ219UkXj0fWgaj6MowzMVQSu3Yi5yatHj1gkO8O5u2A6BTTkBAIXulNwvcQBO021lQ", "https://play-lh.googleusercontent.com/uUzei9bj47jnqynYszL-4bv1og_icGxkg0EGHj3-H7bAcc1WrSZDCbRvYECxyFjn2XFd", "https://play-lh.googleusercontent.com/nMYDAh_uAVJwdUMrldBhJoJbAo6c2nOrzJHlj1L_5Pr-KxS6NZP0BN4I1IGvPQpTPvM", "https://play-lh.googleusercontent.com/j3ie0r4OgyoxJ6uYC5SIUL1Jrh2zstVn3Lq_N9QbMjhC6qzbz_U9_Rnlp9AjXWYHUg", "https://play-lh.googleusercontent.com/VIWtxGqi0t7r6xBk5I3GxrX0r7SaB2pxLICKf_frFlENdorlWIr0AdL6aam4ZpIz1L-E", "https://play-lh.googleusercontent.com/H01Rq4yLLWzXeVNv1_dZpN1hUXVS2um1td-4MV4QpaeEp8NJVjS7GWtL2suk-ZWUn_M", "https://play-lh.googleusercontent.com/BjMBjq8a85USfXrf_Bta7gdPGAhHd5HkausCns05qKE9AOPa19af7S5bwwLfsFAVYv3Y", "https://play-lh.googleusercontent.com/IOxpItUvwASYpWNBjYKIgHKtb0VekTSjke7RQfivNrAHJyKgRPB8cq9SYivk4kP3TTIf", "https://play-lh.googleusercontent.com/yIvO-5ymaTwH-Q3I_auPp1d9OJpZKjiHHNGQCAyJvRPBtc4JXdQ14lKJIgc5UFMLY4E", "https://play-lh.googleusercontent.com/jJiCBmpnboxxwA9_fqq-ZwQdkevSKtOfagG2TlJGkLCcFKXSGFHLNIf652QwNHoSjw", "https://play-lh.googleusercontent.com/7eKbrr6jlF-RugEG_pe3ESDOIp15zUomlE_y4wQiouBIUk6tRupMF0t2jl5iZcoEFw", "https://play-lh.googleusercontent.com/-slZK5SE4SZcmhDCcZIz1_W7ISMxTmk_KlcEXe0rpml1gwK4p0PwEy9giA8DNxHX5A", "https://play-lh.googleusercontent.com/JY0zyKWASM0BzAd40awxPWR6keI9ysBMAEKpsyFvsplly1KWUzXy9Z8S3ccKN3Agy0g", "https://play-lh.googleusercontent.com/vBcuOdCAku4tm6Y8QzW2Z1w7lGpbqpkvrr3A1VA-_wA06Euzvykac94JlaaudMFnGAfN", "https://play-lh.googleusercontent.com/SdzQa_r5rGEXLPl5ftkb7hsxqdoxL80itXNpO7KU0Nc8gLCglb9m6ofI0mO_8wAfxFU", "https://play-lh.googleusercontent.com/PvFLtmgzzRLL0qN1-EyAZK9T63tT77IsWbEP0Sr9CZjRI0098KregLRBYlyiT71aVx62", "https://play-lh.googleusercontent.com/WrBEnDt5mfDlHElx72gzKGKq2CJ1E0QQbpUQoXgtU5WdzvjH4wGFr7QOzfuLWVw0mVY", "https://play-lh.googleusercontent.com/gSvwkZ1MivH5JZ0zPEV4tpyNm6RQzxDoGlUihIoHNAEcZGX9Wpc2HZ06-ax4mLIu4nM", "https://play-lh.googleusercontent.com/hQCxox4G84d7k01DyY6Mi9OXU5OSEPoJtvXaL6_77dXLgH6EWHBjenZdJpGrGHlPqXI", "https://play-lh.googleusercontent.com/2UoocsMKRJJXCKOwCNGV2-Sjw7wecVpAItkWcyFosAjbA1kVGaP0eeKCysL7z88ikoQ", "https://play-lh.googleusercontent.com/Dh38UZpomyLI5y_DQNyitxb92XcqWSKTPJPZGOMmtGx0LlbKB9QGn4p67fCiB5GM3w", "https://play-lh.googleusercontent.com/RkBAvpeZF7JdRveRaZ-zuyqCUDOxOdnoPiGxub5WHn-kYY_DDk5l5PTgEQwvQoxMrA", "https://play-lh.googleusercontent.com/7vJw3QBAbshQQ2NsDOvLgBgQyp17sc9MVIovWKp849tFtC2K9P9VXrcmtUnEv7_1ic4", "https://play-lh.googleusercontent.com/WUAoUXKemZfxcUTPRSkbP5-3In4kHf89UMB9bE3XJQQyuoIEObrLho9XMf0HoDp0kDo" ], "contentRating": "Everyone", "adSupported": true, "updated": 1739951971000, "version": "VARY", "recentChanges": "Thanks for using Google Maps! This release brings bug fixes that improve our product to help you discover new places and navigate to them.

Become a beta tester: http://goo.gl/vLUcaJ", "comments": [], "preregister": false, "earlyAccessEnabled": false, "isAvailableInPlayPass": false, "appId": "com.google.android.apps.maps", "url": "https://play.google.com/store/apps/details?id=com.google.android.apps.maps&hl=en&gl=us" }, "code": 200 }
	
<Root>
  <status>ok</status>
  <error />
  <data>
    <title>Google Maps</title>
    <description>Navigate your world faster and easier with Google Maps.  Over 220 countries and territories mapped and hundreds of millions of businesses and places on the map.  Get real-time GPS navigation, traffic, and transit info, and explore local neighborhoods by knowing where to eat, drink and go - no matter what part of the world you’re in.  Get there faster with real-time updates • Beat traffic with real-time ETAs and traffic conditions • Catch your bus, train, or ride-share with real-time transit info • Save time with automatic rerouting based on live traffic, incidents, and road closures  Discover places and explore like a local • Discover local restaurant, events, and activities that matter to you • Know what’s trending and new places that are opening in the areas you care about • Decide more confidently with “Your match,” a number on how likely you are to like a place • Group planning made easy.  Share a shortlist of options and vote in real-time • Create lists of your favorite places and share with friends • Follow must-try places recommended by local experts, Google, and publishers • Review places you’ve visited. Add photos, missing roads and places.  More experiences on Google Maps • Offline maps to search and navigate without an internet connection • Street View and indoor imagery for restaurants, shops, museums and more • Indoor maps to quickly find your way inside big places like airports, malls and stadiums  * Some features not available in all countries  * Also available for Wear OS. Add a Tile on your Wear OS watch to quickly access home and work.  * Navigation isn't intended to be used by oversized or emergency vehicles</description>
    <descriptionHTML>Navigate your world faster and easier with Google Maps.  Over 220 countries and territories mapped and hundreds of millions of businesses and places on the map.  Get real-time GPS navigation, traffic, and transit info, and explore local neighborhoods by knowing where to eat, drink and go - no matter what part of the world you’re in.&lt;br&gt;&lt;br&gt;Get there faster with real-time updates&lt;br&gt;• Beat traffic with real-time ETAs and traffic conditions&lt;br&gt;• Catch your bus, train, or ride-share with real-time transit info&lt;br&gt;• Save time with automatic rerouting based on live traffic, incidents, and road closures&lt;br&gt;&lt;br&gt;Discover places and explore like a local&lt;br&gt;• Discover local restaurant, events, and activities that matter to you&lt;br&gt;• Know what’s trending and new places that are opening in the areas you care about&lt;br&gt;• Decide more confidently with “Your match,” a number on how likely you are to like a place&lt;br&gt;• Group planning made easy.  Share a shortlist of options and vote in real-time&lt;br&gt;• Create lists of your favorite places and share with friends&lt;br&gt;• Follow must-try places recommended by local experts, Google, and publishers&lt;br&gt;• Review places you’ve visited. Add photos, missing roads and places.&lt;br&gt;&lt;br&gt;More experiences on Google Maps&lt;br&gt;• Offline maps to search and navigate without an internet connection&lt;br&gt;• Street View and indoor imagery for restaurants, shops, museums and more&lt;br&gt;• Indoor maps to quickly find your way inside big places like airports, malls and stadiums&lt;br&gt;&lt;br&gt;* Some features not available in all countries&lt;br&gt;&lt;br&gt;* Also available for Wear OS. Add a Tile on your Wear OS watch to quickly access home and work.&lt;br&gt;&lt;br&gt;* Navigation isn&amp;#39;t intended to be used by oversized or emergency vehicles</descriptionHTML>
    <summary>Real-time GPS navigation &amp;amp; local suggestions for food, events, &amp;amp; activities</summary>
    <installs>10,000,000,000+</installs>
    <minInstalls>10000000000</minInstalls>
    <maxInstalls>17346799843</maxInstalls>
    <score>3.6164036</score>
    <scoreText>3.6</scoreText>
    <ratings>18631588</ratings>
    <reviews>664596</reviews>
    <histogram>
      <_x0031_>4783186</_x0031_>
      <_x0032_>977263</_x0032_>
      <_x0033_>1102974</_x0033_>
      <_x0034_>1508081</_x0034_>
      <_x0035_>10260068</_x0035_>
    </histogram>
    <price>0</price>
    <free>true</free>
    <currency>USD</currency>
    <priceText>Free</priceText>
    <available>true</available>
    <offersIAP>false</offersIAP>
    <androidVersion>VARY</androidVersion>
    <androidVersionText>Varies with device</androidVersionText>
    <androidMaxVersion>VARY</androidMaxVersion>
    <developer>Google LLC</developer>
    <developerId>5700313618786177705</developerId>
    <developerEmail>[email protected]</developerEmail>
    <developerWebsite>http://maps.google.com/about/</developerWebsite>
    <developerAddress>1600 Amphitheatre Parkway, Mountain View 94043</developerAddress>
    <developerLegalName>Google LLC</developerLegalName>
    <developerLegalEmail>[email protected]</developerLegalEmail>
    <developerLegalAddress>1600 Amphitheatre Pkwy, Mountain View, CA 94043, United States</developerLegalAddress>
    <developerLegalPhoneNumber>+1 650-253-0000</developerLegalPhoneNumber>
    <privacyPolicy>http://www.google.com/policies/privacy</privacyPolicy>
    <developerInternalID>5700313618786177705</developerInternalID>
    <genre>Travel &amp; Local</genre>
    <genreId>TRAVEL_AND_LOCAL</genreId>
    <categories>
      <name>Travel &amp; Local</name>
      <id>TRAVEL_AND_LOCAL</id>
    </categories>
    <icon>https://play-lh.googleusercontent.com/Kf8WTct65hFJxBUDm5E-EpYsiDoLQiGGbnuyP6HBNax43YShXti9THPon1YKB6zPYpA</icon>
    <headerImage>https://play-lh.googleusercontent.com/FQx43QTaAqeOtoTLylK3WIs7ySKuGS8AurXNA1Kj34m6w6CjavF4Oj3s5DB6xZZ7DS63</headerImage>
    <screenshots>https://play-lh.googleusercontent.com/FK7X8M1BCF0Ji6-TkHaww2qP8FEdIrvofW6qDRMCNjszqq5XiVmGNCV00KXSSuETMS8</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/PJkiXQiABQxpVdHMpvOux53wP2TVuYg0fq9K5JYYDO336nvbX-0ShhHWzZGnagmWlw</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/6K2sbPKNLgAKWrEUFDLkoumlAoeCH491rS7b_yEWdxwEXgLslsXg64Uq7UC-_n9u0eo</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/GxNGfSXkAxOEvgOXPKNLp373_MqNS9rPVYlCi-1JekFD3N3JdT3g3d4z_5dxWaFvtKg</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/iXEapPYDZQvo6qFLwlcEpau5qSrNECycERn5mPtr2t4DAIfNJSj3h0FM_t74By7bI9rb</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/rbE2lxgiuVV_CjldaGNdBKEZRizx97rEO_yl4ihk7pXh5y8cRf7FROsmw5OLtQrcFA</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/CZqlsBWxW65_RNZVPzMlWqQ6dg9meysacASXxgH1IJr81mnXCbsr4qQg5wwkD7xQ8Vk</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/TUsqChyQ0N92woJa_wI3CBcE3s2_AVOYqKhzBJhF0_kbJIrbexoX8WLMhzxu9DiQ4EM</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/eAjXucba0K068B4vftcTCP_my9c1Jc2cVoBHJ4iOKC0sCmJbfH4DA2apFXW_afEedJK5</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/CtsHG3eIDWZLPvfx9EHyvy1C-a79N93mAH1SE7KpBwgfWUUfgMFhideRpcynzXWNzQ</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/pY3-lUJH2B4EiUIW0Os8rSGtIXi2D1SBBpUUsODoTK55Rqq_nk8mFqeX-LmQdRDTCQ</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/XB6MPAFJh0nh3NzSygUU5vdp53HO4gcYaaw3ifeao-i5b0nmL2sm1i0ewWkJN1PKXQ</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/bV3JqTSIxqcbqPEcEEKLIfBO3Z04Q0vtMRYXFTKH3pspCe0da0s-HtbcVy9IwX23qOA</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/DLpbKo2JM6C7mCM5CRjhYyNRFvE5LB6EpW2ke7JaGklg-rO2ZCHvOepMgZpvQEjiHw</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/ZJ219UkXj0fWgaj6MowzMVQSu3Yi5yatHj1gkO8O5u2A6BTTkBAIXulNwvcQBO021lQ</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/uUzei9bj47jnqynYszL-4bv1og_icGxkg0EGHj3-H7bAcc1WrSZDCbRvYECxyFjn2XFd</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/nMYDAh_uAVJwdUMrldBhJoJbAo6c2nOrzJHlj1L_5Pr-KxS6NZP0BN4I1IGvPQpTPvM</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/j3ie0r4OgyoxJ6uYC5SIUL1Jrh2zstVn3Lq_N9QbMjhC6qzbz_U9_Rnlp9AjXWYHUg</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/VIWtxGqi0t7r6xBk5I3GxrX0r7SaB2pxLICKf_frFlENdorlWIr0AdL6aam4ZpIz1L-E</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/H01Rq4yLLWzXeVNv1_dZpN1hUXVS2um1td-4MV4QpaeEp8NJVjS7GWtL2suk-ZWUn_M</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/BjMBjq8a85USfXrf_Bta7gdPGAhHd5HkausCns05qKE9AOPa19af7S5bwwLfsFAVYv3Y</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/IOxpItUvwASYpWNBjYKIgHKtb0VekTSjke7RQfivNrAHJyKgRPB8cq9SYivk4kP3TTIf</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/yIvO-5ymaTwH-Q3I_auPp1d9OJpZKjiHHNGQCAyJvRPBtc4JXdQ14lKJIgc5UFMLY4E</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/jJiCBmpnboxxwA9_fqq-ZwQdkevSKtOfagG2TlJGkLCcFKXSGFHLNIf652QwNHoSjw</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/7eKbrr6jlF-RugEG_pe3ESDOIp15zUomlE_y4wQiouBIUk6tRupMF0t2jl5iZcoEFw</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/-slZK5SE4SZcmhDCcZIz1_W7ISMxTmk_KlcEXe0rpml1gwK4p0PwEy9giA8DNxHX5A</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/JY0zyKWASM0BzAd40awxPWR6keI9ysBMAEKpsyFvsplly1KWUzXy9Z8S3ccKN3Agy0g</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/vBcuOdCAku4tm6Y8QzW2Z1w7lGpbqpkvrr3A1VA-_wA06Euzvykac94JlaaudMFnGAfN</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/SdzQa_r5rGEXLPl5ftkb7hsxqdoxL80itXNpO7KU0Nc8gLCglb9m6ofI0mO_8wAfxFU</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/PvFLtmgzzRLL0qN1-EyAZK9T63tT77IsWbEP0Sr9CZjRI0098KregLRBYlyiT71aVx62</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/WrBEnDt5mfDlHElx72gzKGKq2CJ1E0QQbpUQoXgtU5WdzvjH4wGFr7QOzfuLWVw0mVY</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/gSvwkZ1MivH5JZ0zPEV4tpyNm6RQzxDoGlUihIoHNAEcZGX9Wpc2HZ06-ax4mLIu4nM</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/hQCxox4G84d7k01DyY6Mi9OXU5OSEPoJtvXaL6_77dXLgH6EWHBjenZdJpGrGHlPqXI</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/2UoocsMKRJJXCKOwCNGV2-Sjw7wecVpAItkWcyFosAjbA1kVGaP0eeKCysL7z88ikoQ</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/Dh38UZpomyLI5y_DQNyitxb92XcqWSKTPJPZGOMmtGx0LlbKB9QGn4p67fCiB5GM3w</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/RkBAvpeZF7JdRveRaZ-zuyqCUDOxOdnoPiGxub5WHn-kYY_DDk5l5PTgEQwvQoxMrA</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/7vJw3QBAbshQQ2NsDOvLgBgQyp17sc9MVIovWKp849tFtC2K9P9VXrcmtUnEv7_1ic4</screenshots>
    <screenshots>https://play-lh.googleusercontent.com/WUAoUXKemZfxcUTPRSkbP5-3In4kHf89UMB9bE3XJQQyuoIEObrLho9XMf0HoDp0kDo</screenshots>
    <contentRating>Everyone</contentRating>
    <adSupported>true</adSupported>
    <updated>1739951971000</updated>
    <version>VARY</version>
    <recentChanges>Thanks for using Google Maps! This release brings bug fixes that improve our product to help you discover new places and navigate to them.&lt;br&gt;&lt;br&gt;Become a beta tester: http://goo.gl/vLUcaJ</recentChanges>
    <preregister>false</preregister>
    <earlyAccessEnabled>false</earlyAccessEnabled>
    <isAvailableInPlayPass>false</isAvailableInPlayPass>
    <appId>com.google.android.apps.maps</appId>
    <url>https://play.google.com/store/apps/details?id=com.google.android.apps.maps&amp;hl=en&amp;gl=us</url>
  </data>
  <code>200</code>
</Root>
	
							
	
status: ok
error: 
data:
  title: Google Maps
  description: Navigate your world faster and easier with Google Maps.  Over 220 countries and territories mapped and hundreds of millions of businesses and places on the map.  Get real-time GPS navigation, traffic, and transit info, and explore local neighborhoods by knowing where to eat, drink and go - no matter what part of the world you’re in.  Get there faster with real-time updates • Beat traffic with real-time ETAs and traffic conditions • Catch your bus, train, or ride-share with real-time transit info • Save time with automatic rerouting based on live traffic, incidents, and road closures  Discover places and explore like a local • Discover local restaurant, events, and activities that matter to you • Know what’s trending and new places that are opening in the areas you care about • Decide more confidently with “Your match,” a number on how likely you are to like a place • Group planning made easy.  Share a shortlist of options and vote in real-time • Create lists of your favorite places and share with friends • Follow must-try places recommended by local experts, Google, and publishers • Review places you’ve visited. Add photos, missing roads and places.  More experiences on Google Maps • Offline maps to search and navigate without an internet connection • Street View and indoor imagery for restaurants, shops, museums and more • Indoor maps to quickly find your way inside big places like airports, malls and stadiums  * Some features not available in all countries  * Also available for Wear OS. Add a Tile on your Wear OS watch to quickly access home and work.  * Navigation isn't intended to be used by oversized or emergency vehicles
  descriptionHTML: Navigate your world faster and easier with Google Maps.  Over 220 countries and territories mapped and hundreds of millions of businesses and places on the map.  Get real-time GPS navigation, traffic, and transit info, and explore local neighborhoods by knowing where to eat, drink and go - no matter what part of the world you’re in.

Get there faster with real-time updates
• Beat traffic with real-time ETAs and traffic conditions
• Catch your bus, train, or ride-share with real-time transit info
• Save time with automatic rerouting based on live traffic, incidents, and road closures

Discover places and explore like a local
• Discover local restaurant, events, and activities that matter to you
• Know what’s trending and new places that are opening in the areas you care about
• Decide more confidently with “Your match,” a number on how likely you are to like a place
• Group planning made easy. Share a shortlist of options and vote in real-time
• Create lists of your favorite places and share with friends
• Follow must-try places recommended by local experts, Google, and publishers
• Review places you’ve visited. Add photos, missing roads and places.

More experiences on Google Maps
• Offline maps to search and navigate without an internet connection
• Street View and indoor imagery for restaurants, shops, museums and more
• Indoor maps to quickly find your way inside big places like airports, malls and stadiums

* Some features not available in all countries

* Also available for Wear OS. Add a Tile on your Wear OS watch to quickly access home and work.

* Navigation isn't intended to be used by oversized or emergency vehicles summary: Real-time GPS navigation & local suggestions for food, events, & activities installs: 10,000,000,000+ minInstalls: 10000000000 maxInstalls: 17346799843 score: 3.6164036 scoreText: 3.6 ratings: 18631588 reviews: 664596 histogram: 1: 4783186 2: 977263 3: 1102974 4: 1508081 5: 10260068 price: 0 free: true currency: USD priceText: Free available: true offersIAP: false androidVersion: VARY androidVersionText: Varies with device androidMaxVersion: VARY developer: Google LLC developerId: 5700313618786177705 developerEmail: [email protected] developerWebsite: http://maps.google.com/about/ developerAddress: 1600 Amphitheatre Parkway, Mountain View 94043 developerLegalName: Google LLC developerLegalEmail: [email protected] developerLegalAddress: 1600 Amphitheatre Pkwy, Mountain View, CA 94043, United States developerLegalPhoneNumber: +1 650-253-0000 privacyPolicy: http://www.google.com/policies/privacy developerInternalID: 5700313618786177705 genre: Travel & Local genreId: TRAVEL_AND_LOCAL categories: - name: Travel & Local id: TRAVEL_AND_LOCAL icon: https://play-lh.googleusercontent.com/Kf8WTct65hFJxBUDm5E-EpYsiDoLQiGGbnuyP6HBNax43YShXti9THPon1YKB6zPYpA headerImage: https://play-lh.googleusercontent.com/FQx43QTaAqeOtoTLylK3WIs7ySKuGS8AurXNA1Kj34m6w6CjavF4Oj3s5DB6xZZ7DS63 screenshots: - https://play-lh.googleusercontent.com/FK7X8M1BCF0Ji6-TkHaww2qP8FEdIrvofW6qDRMCNjszqq5XiVmGNCV00KXSSuETMS8 - https://play-lh.googleusercontent.com/PJkiXQiABQxpVdHMpvOux53wP2TVuYg0fq9K5JYYDO336nvbX-0ShhHWzZGnagmWlw - https://play-lh.googleusercontent.com/6K2sbPKNLgAKWrEUFDLkoumlAoeCH491rS7b_yEWdxwEXgLslsXg64Uq7UC-_n9u0eo - https://play-lh.googleusercontent.com/GxNGfSXkAxOEvgOXPKNLp373_MqNS9rPVYlCi-1JekFD3N3JdT3g3d4z_5dxWaFvtKg - https://play-lh.googleusercontent.com/iXEapPYDZQvo6qFLwlcEpau5qSrNECycERn5mPtr2t4DAIfNJSj3h0FM_t74By7bI9rb - https://play-lh.googleusercontent.com/rbE2lxgiuVV_CjldaGNdBKEZRizx97rEO_yl4ihk7pXh5y8cRf7FROsmw5OLtQrcFA - https://play-lh.googleusercontent.com/CZqlsBWxW65_RNZVPzMlWqQ6dg9meysacASXxgH1IJr81mnXCbsr4qQg5wwkD7xQ8Vk - https://play-lh.googleusercontent.com/TUsqChyQ0N92woJa_wI3CBcE3s2_AVOYqKhzBJhF0_kbJIrbexoX8WLMhzxu9DiQ4EM - https://play-lh.googleusercontent.com/eAjXucba0K068B4vftcTCP_my9c1Jc2cVoBHJ4iOKC0sCmJbfH4DA2apFXW_afEedJK5 - https://play-lh.googleusercontent.com/CtsHG3eIDWZLPvfx9EHyvy1C-a79N93mAH1SE7KpBwgfWUUfgMFhideRpcynzXWNzQ - https://play-lh.googleusercontent.com/pY3-lUJH2B4EiUIW0Os8rSGtIXi2D1SBBpUUsODoTK55Rqq_nk8mFqeX-LmQdRDTCQ - https://play-lh.googleusercontent.com/XB6MPAFJh0nh3NzSygUU5vdp53HO4gcYaaw3ifeao-i5b0nmL2sm1i0ewWkJN1PKXQ - https://play-lh.googleusercontent.com/bV3JqTSIxqcbqPEcEEKLIfBO3Z04Q0vtMRYXFTKH3pspCe0da0s-HtbcVy9IwX23qOA - https://play-lh.googleusercontent.com/DLpbKo2JM6C7mCM5CRjhYyNRFvE5LB6EpW2ke7JaGklg-rO2ZCHvOepMgZpvQEjiHw - https://play-lh.googleusercontent.com/ZJ219UkXj0fWgaj6MowzMVQSu3Yi5yatHj1gkO8O5u2A6BTTkBAIXulNwvcQBO021lQ - https://play-lh.googleusercontent.com/uUzei9bj47jnqynYszL-4bv1og_icGxkg0EGHj3-H7bAcc1WrSZDCbRvYECxyFjn2XFd - https://play-lh.googleusercontent.com/nMYDAh_uAVJwdUMrldBhJoJbAo6c2nOrzJHlj1L_5Pr-KxS6NZP0BN4I1IGvPQpTPvM - https://play-lh.googleusercontent.com/j3ie0r4OgyoxJ6uYC5SIUL1Jrh2zstVn3Lq_N9QbMjhC6qzbz_U9_Rnlp9AjXWYHUg - https://play-lh.googleusercontent.com/VIWtxGqi0t7r6xBk5I3GxrX0r7SaB2pxLICKf_frFlENdorlWIr0AdL6aam4ZpIz1L-E - https://play-lh.googleusercontent.com/H01Rq4yLLWzXeVNv1_dZpN1hUXVS2um1td-4MV4QpaeEp8NJVjS7GWtL2suk-ZWUn_M - https://play-lh.googleusercontent.com/BjMBjq8a85USfXrf_Bta7gdPGAhHd5HkausCns05qKE9AOPa19af7S5bwwLfsFAVYv3Y - https://play-lh.googleusercontent.com/IOxpItUvwASYpWNBjYKIgHKtb0VekTSjke7RQfivNrAHJyKgRPB8cq9SYivk4kP3TTIf - https://play-lh.googleusercontent.com/yIvO-5ymaTwH-Q3I_auPp1d9OJpZKjiHHNGQCAyJvRPBtc4JXdQ14lKJIgc5UFMLY4E - https://play-lh.googleusercontent.com/jJiCBmpnboxxwA9_fqq-ZwQdkevSKtOfagG2TlJGkLCcFKXSGFHLNIf652QwNHoSjw - https://play-lh.googleusercontent.com/7eKbrr6jlF-RugEG_pe3ESDOIp15zUomlE_y4wQiouBIUk6tRupMF0t2jl5iZcoEFw - https://play-lh.googleusercontent.com/-slZK5SE4SZcmhDCcZIz1_W7ISMxTmk_KlcEXe0rpml1gwK4p0PwEy9giA8DNxHX5A - https://play-lh.googleusercontent.com/JY0zyKWASM0BzAd40awxPWR6keI9ysBMAEKpsyFvsplly1KWUzXy9Z8S3ccKN3Agy0g - https://play-lh.googleusercontent.com/vBcuOdCAku4tm6Y8QzW2Z1w7lGpbqpkvrr3A1VA-_wA06Euzvykac94JlaaudMFnGAfN - https://play-lh.googleusercontent.com/SdzQa_r5rGEXLPl5ftkb7hsxqdoxL80itXNpO7KU0Nc8gLCglb9m6ofI0mO_8wAfxFU - https://play-lh.googleusercontent.com/PvFLtmgzzRLL0qN1-EyAZK9T63tT77IsWbEP0Sr9CZjRI0098KregLRBYlyiT71aVx62 - https://play-lh.googleusercontent.com/WrBEnDt5mfDlHElx72gzKGKq2CJ1E0QQbpUQoXgtU5WdzvjH4wGFr7QOzfuLWVw0mVY - https://play-lh.googleusercontent.com/gSvwkZ1MivH5JZ0zPEV4tpyNm6RQzxDoGlUihIoHNAEcZGX9Wpc2HZ06-ax4mLIu4nM - https://play-lh.googleusercontent.com/hQCxox4G84d7k01DyY6Mi9OXU5OSEPoJtvXaL6_77dXLgH6EWHBjenZdJpGrGHlPqXI - https://play-lh.googleusercontent.com/2UoocsMKRJJXCKOwCNGV2-Sjw7wecVpAItkWcyFosAjbA1kVGaP0eeKCysL7z88ikoQ - https://play-lh.googleusercontent.com/Dh38UZpomyLI5y_DQNyitxb92XcqWSKTPJPZGOMmtGx0LlbKB9QGn4p67fCiB5GM3w - https://play-lh.googleusercontent.com/RkBAvpeZF7JdRveRaZ-zuyqCUDOxOdnoPiGxub5WHn-kYY_DDk5l5PTgEQwvQoxMrA - https://play-lh.googleusercontent.com/7vJw3QBAbshQQ2NsDOvLgBgQyp17sc9MVIovWKp849tFtC2K9P9VXrcmtUnEv7_1ic4 - https://play-lh.googleusercontent.com/WUAoUXKemZfxcUTPRSkbP5-3In4kHf89UMB9bE3XJQQyuoIEObrLho9XMf0HoDp0kDo contentRating: Everyone adSupported: true updated: 1739951971000 version: VARY recentChanges: 'Thanks for using Google Maps! This release brings bug fixes that improve our product to help you discover new places and navigate to them.

Become a beta tester: http://goo.gl/vLUcaJ' comments: [] preregister: false earlyAccessEnabled: false isAvailableInPlayPass: false appId: com.google.android.apps.maps url: https://play.google.com/store/apps/details?id=com.google.android.apps.maps&hl=en&gl=us code: 200
Live Test API in Playground

Response Types

The Play Store Scraper API supports the following response content types:

application/json, application/xml, application/yaml

You can specify the response content type by setting the Accept header in your request. If you don't specify a content type, the API will default to application/json.

Authentication

The Play Store Scraper API uses an API Key to authenticate requests. You can view and manage your API key by visiting your dashboard.

Your API keys carry many privileges. To keep them from being abused, please do not share the keys on client-side code or Github etc. Keep them very secure.

To use any API, you must have it enabled from within your dashboard. Disabled APIs will fail to respond to your requests.

All requests made to the API must contain the header x-api-key in each of your requests. API requests without authentication will fail.

All API requests must also be made over secure HTTPS. Requests made over plain HTTP will fail.

Error Code Meaning
401 Your request was made with invalid credentials. This error also appears when you don't pass the x-api-key header in your request.
403 Typically, this occurs when you are trying to access an API that you have not enabled.

Rate Limits

	
{
    "status": "error",
    "data": null,
    "error": "tokens have been depleted",
    "code": 429
}
	
							

Each subscription has its own monthly token limit. Your token count is based on your subscription plan. If you reach your limits, don't worry. You can always upgrade or downgrade at any time.

When you reach your limit, the service will stop responding and typically return an HTTP 429 response status code. The error will also contain a detailed JSON.

The Play Store Scraper API uses the following error code:

Error Code Meaning
429 You have exceeded your rate limit and further requests will be denied until the next cycle.

Error Codes

For reference, the Play Store Scraper API uses the following error codes:

Error Code Meaning
Code Message
200 The request was successful. The response will include the requested data.
400 The request was invalid. The response will include a message that explains the error.
401 The request was not authorized. Usually, this means that the API key is missing or invalid.
403 This means that the request was trying to access a resource that it does not have permission to access.
404 This means that the resource you are trying to access does not exist.
429 This means that you have reached the rate limit. The response will include a Retry-After header that indicates how many seconds you need to wait before making a new request.
500 This means that there was an error on the server side. We are alerted when this happens and we will work to fix it as soon as possible.
ON THIS PAGE