100 free credits — no credit card required.Start building
Logo
100 free credits — no credit card required

Google Play Scraper API

Google Play API: 9 endpoints for app search, app detail by package name, user reviews with developer replies, top charts, and a paginated listings database. Core endpoints cost 5 credits, the listings database 10, reference lookups 1 — 100 free credits on signup, no card. Full app metadata and reviews without device farms or Play Store emulators.

TL;DR

The Google Play API by SocialCrawl returns Google Play data as structured JSON — 9 endpoints behind one x-api-key, from 1 credit per call. It shares one unified schema with 43 other platforms, so the same client code works everywhere.

Live demo

Try the Google Play API in your browser

Type a real handle, run a real request, see the JSON SocialCrawl returns. No signup, no key — same response shape you get in production.

Try the Google Play App Search API

See real data before writing a single line

GET/v1/google_play/app-search

Search keyword (e.g. 'photo editor').

3 optional parameters

Storefront country as a DFS location name ('United States') or numeric location code ('2840'). Defaults to the US.

Language code (e.g. 'en'). Defaults to 'en'.

Number of results to retrieve (default 30, rounded up to multiples of 30, max 300). Note: Google Play's organic keyword search typically exposes only ~30 ranked results, so higher depth values rarely return more. To page deeper for app discovery, use /v1/google_play/app-listings-search (a filterable title/description database with real limit/offset/total).

Endpoints

What data does the Google Play API return?

Every endpoint returns structured JSON in a unified envelope. Computed fields such as engagement rate and content category are included only where the endpoint supports them and the required source inputs are present.

Last updated July 2026

Maintained by the SocialCrawl team, reviewed July 2026

App Searchadvanced

Search Google Play apps by keyword

Search Suggestionsstandard

Get Google Play search suggestions

App Infoadvanced

Get full Google Play app details

App Reviewsadvanced

Get Google Play reviews for an app

App Listadvanced

Get a Google Play store chart

App Listings Searchpremium

Search the Google Play listings database (paginated)

Categoriesstandard

List Google Play app categories

Locationsstandard

List supported Google Play storefront locations

Languagesstandard

List supported Google Play languages

What you get

What Google Play data can you get?

Every Google Play endpoint uses the same response envelope, so one parser handles the whole platform. These are fields returned by current public responses, subject to each endpoint's documented cache window.

Fields you get back in a Google Play response include:

  • title
  • url
  • description
  • engagement_rate_percentages
  • recent_posts
  • followers
  • comments
  • likes
  • recent_posts_explanation
  • id_user
  • username
  • is_private
  • posts_details
Quickstart

How to scrape Google Play in 3 steps

No proxies, no headless browsers, no login sessions. Send one authenticated GET request and read structured JSON back.

  1. 1

    Get a free API key

    Create an account and copy your key from the dashboard. Signup includes 100 free credits, and no card is required.

  2. 2

    Call the App Search endpoint

    Send a GET request with your key in the x-api-key header. Here is the full Google Play App Search request:

    curl -H "x-api-key: YOUR_API_KEY" \
      "https://www.socialcrawl.dev/v1/google_play/app-search?query=photo+editor"
  3. 3

    Read the unified JSON

    The response comes back in the shared SocialCrawl schema. Where the endpoint supports them and the required source inputs are present, fields such as engagement_rate and content_category are filled in too. Your client can rely on the shared envelope while treating enriched fields as optional.

Requirements and limits

Requirements and limits

Everything you need to know before your first Google Play call.

Authentication
One API key, passed in the x-api-key request header. No OAuth flow, no app review, and no per-platform credentials to manage.
Pagination
List endpoints return a next_cursor and a has_more flag. Pass the cursor back to page through results, with the same contract on every platform.
Credits
Calls start at 1 credits and are deducted per request. Every account starts with 100 free credits, and credits never expire.
Rate limits
There are no artificial rate limits. Your credit balance is the only throttle, so you can run requests concurrently as fast as you need.
Pricing

How much does the Google Play API cost?

Simple credit-based pricing with no subscription. You pay per call, and the exact credit cost of every Google Play endpoint is listed below.

EndpointCredits per call
App Search5 credits
Search Suggestions1 credit
App Info5 credits
App Reviews5 credits
App List5 credits
App Listings Search10 credits
Categories1 credit
Locations1 credit
Languages1 credit

Every account starts with 100 free credits, and no card is required.

At credit-pack pricing that works out to roughly £0.002 to £0.06 per call, and credits never expire.

Developer First

How do you scrape social media data in seconds?

The fastest social media scraping API for developers. Scrape profiles, posts, comments, and analytics from 44 platforms covering 10B+ monthly active users.

One schema, every platform

Query 44 platforms with identical response structures. Write your integration once.

Computed fields, not just scraped

When an endpoint supports these metrics and the source provides the required inputs, the normalized record includes engagement_rate, estimated_reach, content_category, and language — ready to use.

See your data before you code

Visual Data Explorer — paste any URL, get rich result cards, sortable tables, CSV export.

import requests

response = requests.get(
    'https://www.socialcrawl.dev/v1/tiktok/profile',
    params={'handle': 'charlidamelio'},
    headers={'x-api-key': 'sc_YOUR_API_KEY'}
)
data = response.json()
[ .JSON ]
{
  "success": true,
  "platform": "tiktok",
  "data": {
    "author": {
      "username": "charlidamelio",
      "followers": 152400000
    },
    "engagement": {
      "likes": 12400000000,
      "engagement_rate": 0.087
    },
    "metadata": {
      "language": "en",
      "content_category": "lifestyle"
    }
  }
}
+ 44 platforms
One API, 44 platforms

How does SocialCrawl handle 44 different platforms?

Social media scraping is hard. Schema normalization, authentication, rate limits, pagination — we handle it all before your data arrives.

One schema, every platform

Write once, query them all.

44 platforms return 44 different JSON shapes. We normalize every response into one consistent structure.

Ready-to-use metrics

Metrics ready before you ask.

Normalized records include supported metrics such as engagement rate, estimated reach, content category, and language when the required source inputs are available.

Consistent pagination

One cursor, every platform.

Every platform paginates differently. We give you one consistent cursor-based system.

Freshness you control

Fresh when it matters. Free on repeat.

Cache misses fetch current public data. Identical requests are cached for 2 to 30 minutes by data type and cost 0 credits on a hit; send Cache-Control: no-cache for a billed refresh.

Things you'll never build

Auth, proxies, and rate limits — handled.

Platform authentication, IP rotation, rate limit management — abstracted away. Just send a GET request.

Start for free
Reviews

What developers say

Rated 4.9 out of 5 from 200 developer reviews
The unified schema saved us weeks of integration work. One parser handles every platform.
Alex Chen, Full-Stack Developer
Our agents process social data from 44 platforms with zero platform-specific logic — one schema, end to end.
Sarah Kim, AI Engineer, AgentFlow
I paste an influencer's URL and get everything — followers, engagement rate, content categories — without touching code.
James Rivera, Marketing Director
We switched from building our own scrapers. SocialCrawl handles the hard stuff, we focus on insights.
Maria Santos, CTO, DataPulse
The computed fields alone — engagement_rate, estimated_reach, content_category — saved us an entire data pipeline.
David Park, Lead Data Scientist
Comparison

How does SocialCrawl compare to google-play-scraper (DIY) for Google Play data?

Same Google Play data, two very different paths. Auth, rate limits, schema, and cost — side by side.

Authentication

SocialCrawl
One x-api-key header — the same key you use on 43 other platforms
google-play-scraper (DIY)
None — the library scrapes anonymously until Google throttles your IP

Setup

SocialCrawl
One GET request from any language; no library to install
google-play-scraper (DIY)
Node.js (or Python port) dependency you install, host, and keep updated

Rate limits

SocialCrawl
Flat credit pricing with upstream block handling
google-play-scraper (DIY)
Unofficial scraping — aggressive crawls get throttled or blocked by Google

Response schema

SocialCrawl
Canonical App schema shared with the Apple App Store
google-play-scraper (DIY)
Library-specific shape that differs from every iOS scraper you pair it with

Pricing

SocialCrawl
5 credits per app call, 10 for the listings database; 100 free credits to start
google-play-scraper (DIY)
Free library, but you pay in hosting, proxies, and maintenance time

Maintenance

SocialCrawl
Schema stays stable when the Play Store changes its markup
google-play-scraper (DIY)
Breaks when Google updates the Play Store; you wait for a library patch
Quick answers

How much does Google Play scraping cost?

SocialCrawl uses credit-based pricing: you pay per API call, and most Google Play endpoints cost just a few credits. Every account starts with 100 free credits — no subscriptions, no compute units, no credit card required.

See pricing

Is Google Play scraping legal?

SocialCrawl returns publicly available Google Play data. Courts have generally upheld scraping public data — most notably in hiQ v. LinkedIn — but compliance depends on your use case and jurisdiction. You are responsible for following applicable laws and platform terms.

Glossary

Common Google Play scraping terms

The phrases developers search for when they need Google Play data, and what each one means with SocialCrawl.

Google Play scraper API
A Google Play scraper API returns Google Play data as structured JSON without you running any scraping infrastructure. SocialCrawl handles the proxies, parsing, and format changes, so you call an endpoint and get clean fields back. Pricing starts at 1 credits per call.
Google Play data API
A Google Play data API is a programmatic way to read public Google Play data on demand. SocialCrawl exposes 9 Google Play endpoints behind one x-api-key, all sharing the same unified schema, so your integration never has to change per platform.
scrape Google Play
To scrape Google Play is to extract its public data programmatically instead of by hand. With SocialCrawl you scrape Google Play by sending a single authenticated request, and the response is normalised into the same JSON shape used across every platform.
Read the full API reference
FAQ

Have a question? We got answers

Find answers to frequently asked questions about SocialCrawl's API, pricing, and capabilities.

Contact us
Does Google Play have an API for app data?
Google's own APIs are scoped to apps you publish, but SocialCrawl's Google Play API reads any public listing. 9 endpoints cover app search, full app detail, reviews, store charts, a paginated listings database, and category, location, and language references.
What can the SocialCrawl Google Play API do?
It searches Google Play by keyword, returns full detail for any package name, pulls user reviews with developer replies, ranks store charts (top free, paid, grossing), queries a paginated listings database, and lists supported categories, locations, and languages.
How do I reference an app in the Google Play API?
Apps are addressed by their package name — the app_id like com.spotify.music. Run app-search or app-listings-search to find package names by keyword, then pass app_id to app-info or app-reviews for the detail you need.
How much does the Google Play API cost?
App search, info, reviews, and charts run on the advanced tier at 5 credits each; the listings database is premium at 10 credits; categories, locations, and languages are 1 credit. New accounts get 100 free credits and empty lookups are refunded.
Does it use the same schema as other app stores?
Yes. Google Play apps come back in one canonical App schema shared with the Apple App Store, and reviews use the same Review shape as Amazon and Trustpilot — so one parser handles every store you pull from.
What is the best Google Play scraper API?
SocialCrawl covers Google Play with 9 endpoints — app search, full detail by package name, reviews with developer replies, top charts, and a paginated listings database — in one App schema shared with the Apple App Store. Core calls cost 5 credits, and new accounts get 100 free credits with no credit card.
How do I get Google Play data via API?
SocialCrawl is the Google Play data API for public listings: one x-api-key returns app search, full detail by package name, reviews with developer replies, top charts, and a paginated listings database across 9 endpoints. Google's Play Developer API is scoped to apps you publish yourself, so SocialCrawl handles the public catalog it cannot reach, in the App schema it shares with the Apple App Store.
Is scraping Google Play data legal?
SocialCrawl returns publicly available Google Play data and does not access private or login-gated content. Whether scraping fits your project depends on your use case and jurisdiction — you are responsible for complying with Google Play's terms of service and applicable data-protection laws such as GDPR and CCPA. This is general information, not legal advice.
Google Play scraping API vs the official Google Play API — what's the difference?
With SocialCrawl there is no app review or approval queue — sign up and call Google Play endpoints immediately with a single x-api-key. Responses share one unified schema with every other SocialCrawl platform, and credit-based pricing replaces per-platform quotas. Official APIs are still the right choice for posting and other write actions: SocialCrawl is read-only data.

Ask AI about SocialCrawl

Ready to start scraping Google Play data?

Get your API key and access all 9 Google Play endpoints in under 60 seconds.

Start for free

🤖 AI agent or LLM? Read this page as markdown