All scrapers
E-commerce
Google Play Scraper
play.google.com
100% Success rate
2.6s Avg response
Bot detection + rate limiting Protection
1,000 calls Measured over
Google Play is the Android app store, with app metadata, ratings and pricing across categories. ScrapeUnblocker renders its app and search pages as a user would see them and returns the title, developer, rating and installs for each app, holding a clean 100% at under three seconds a page.
What you can extract
- App title, developer and category
- Rating, review count and install count
- Price or free / in-app purchase flag
- Content rating and last update
- Icon, screenshots and listing URL
How to scrape it
curl -X POST \
-H "X-ScrapeUnblocker-Key: $SU_API_KEY" \
"https://api.scrapeunblocker.com/getPageSource?url=https%3A%2F%2Fplay.google.com%2Fstore%2Fsearch%3Fq%3Dmaps%26c%3Dapps&parsed_data=true"import requests
resp = requests.post(
"https://api.scrapeunblocker.com/getPageSource",
headers={"X-ScrapeUnblocker-Key": SU_API_KEY},
params={"url": "https://play.google.com/store/search?q=maps&c=apps", "parsed_data": True},
)
print(resp.text)import { ScrapeUnblockerClient } from 'scrapeunblocker';
const su = new ScrapeUnblockerClient({ apiKey: process.env.SU_API_KEY });
const results = await su.getPageSource({
url: 'https://play.google.com/store/search?q=maps&c=apps',
parsedData: true,
});
console.log(results); Requests are POST and take their parameters in the query string. Browser rendering always happens - there is no flag to enable.
Related scrapers
Start scraping this site today
Free tier included. No credit card required to test it.