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

Google Play App Info API

Scrape Google Play App Info data with one API call. Returns the full canonical `App` record for one Google Play app keyed by its package name (`app_id`) — title, description, developer block (incl. email/address/website), rating, price, install count + display ('1,000,000,000+'), version, size, screenshots, genres, chart tags, similar apps, and update date. The `app.store` field is always "google_play"; Apple-only leaves (advisories, languages) are null. Get the `app_id` from /v1/google_play/app-search. Sourced from DataForSEO's task-based App Data API.

Last updated August 2026Maintained by the SocialCrawl team

Returns one Google Play app's full record by package name: description, developer contact, rating, price, install count, version, size, screenshots, and genres.

Use it when you already have an app_id and need the detail that search results leave out.

Searching 48 platforms in parallel

·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
·TikTok logoTikTok·Instagram logoInstagram·YouTube logoYouTube·Facebook logoFacebook·X logoX·LinkedIn logoLinkedIn·Reddit logoReddit·Threads logoThreads·Pinterest logoPinterest·Twitch logoTwitch·Truth Social logoTruth Social·Snapchat logoSnapchat·Kick logoKick·Bluesky logoBluesky·Kwai logoKwai·Rumble logoRumble·Spotify logoSpotify·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Linktree logoLinktree·Komi logoKomi·Pillar logoPillar·lnk.bio logolnk.bio·Facebook Ads logoFacebook Ads·Google Ads logoGoogle Ads·LinkedIn Ads logoLinkedIn Ads·Google Search logoGoogle Search·Google News logoGoogle News·Google Finance logoGoogle Finance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility·Universal Search logoUniversal Search
Google Play API

What can you do with the App Info API?

The App Info endpoint gives you structured Google Play data with computed fields in a single request. No scraping infrastructure to build or maintain.

Example Request

curl -H "x-api-key: YOUR_API_KEY" \
  "https://www.socialcrawl.dev/v1/google_play/app-info?app_id=com.spotify.music"
import requests

response = requests.get(
    "https://www.socialcrawl.dev/v1/google_play/app-info",
    params={
    'app_id': 'com.spotify.music',
    },
    headers={"x-api-key": "YOUR_API_KEY"},
)

data = response.json()
const response = await fetch(
  "https://www.socialcrawl.dev/v1/google_play/app-info?app_id=com.spotify.music",
  {
    headers: { "x-api-key": "YOUR_API_KEY" },
  },
);

const data = await response.json();

Parameters

ParameterRequiredDescription
app_idYesGoogle Play package name (e.g. 'com.spotify.music'), from app-search.
countryNoStorefront country as an ISO code ('US'), a full name, or a numeric code. Defaults to the US.
languageNoLanguage code (e.g. 'en'). Defaults to 'en'.
Example Response

What does the Google Play App Info API return?

Every response follows one unified schema. Here is a real, unmodified response body, so you can see the exact fields you get back before spending a credit.

Example response
{
  "success": true,
  "platform": "google_play",
  "endpoint": "/v1/google_play/app-info",
  "data": {
    "app": {
      "id": "com.spotify.music",
      "store": "google_play",
      "url": "https://play.google.com/store/apps/details?id=com.spotify.music&hl=en&gl=us",
      "title": "Spotify: Music and Podcasts",
      "icon": "https://play-lh.googleusercontent.com/IzQgYCcnCFCD08GR-3bdtcT8xzOvrNkC84avGT5CwTX2VIqmTmKKJcP_Cd4JoBOdmCMlTndlOzV6hrthg2fOWA",
      "description": "With the Spotify music and podcast app, you can play millions of songs, albums and original podcasts for free. We have even added audiobooks, so you can enjoy thousands of stories wherever you are!\n\nStream music and podcasts, listen to audiobooks, discover albums, playlists or even single songs for free on your mobile or tablet. Subscribe to Spotify Premium to download and listen offline wherever you are.\n\nSpotify gives you access to a world of free music, curated playlists, artists, and podcasts you love. Discover podcasts, new music, top songs or listen to your favorite artists and albums.\n\nWHY SPOTIFY FOR MUSIC AND PODCASTS?\n• Listen to over 80 million songs and 4 million podcasts (and counting)\n• Enjoy over 300,000 newly added audiobook titles\n• Discover new music, albums, playlists and original podcasts.\n• Search for your favorite song or artist by typing a lyric\n• Enjoy amazing sound quality on music and podcasts across all devices.\n• Create and share your own music playlists to suit your mood or discover other playlists you might like.\n• Listen to daily music mixes made just for you.\n• Explore top songs from different genres, countries or decades.\n• Subscribe to your favourite podcasts so that you never miss an episode, then curate your very own podcast library.\n• Bookmark individual podcasts into Playlists\n• Listen to music and podcasts on your mobile, tablet, desktop, PlayStation, Chromecast, TV, Wear OS or wearable device.\n\nListen and discover the latest music from artists like;\n• Bad Bunny\n• Billie Eilish\n• Renzo Pianciola\n• The Temper Trap\n• Harry Styles\n\nListen to your favorite music artists all day every day via the Popular Radio playlist feature. Here are just some of the artists we’ve already curated;\n• Taylor Swift\n• Drake\n• Eminem\n• Coldplay\n• Paolo Nutini\n• Fleetwood Mac\n\nListen to over 40 category genres - New Releases, Charts, Live Events, Made for You, At Home, Only You, Summer, Pop, Workout, Hip-Hop, Mood, Party, Pride, Dance/Electronic, Alternative, Indie, Equal, Wellness, Rock, Frequency, R&B, Disney,, Throwback, Radar, Chill, Sleep, In the car, Kids & Family, Caribbean, Classical, Romance, Jazz, Instrumental, Afro, Christian and Gospel and Country.\n\nListen to popular and exclusive podcasts like;\n• The Joe Rogan Experience\n• Modern Wisdom\n• 2 Bears, 1 Cave with Tom Segura and Bert Kreischer\n• Call Her Daddy and Crime Junkie\n\nSearch, discover and play music, podcasts and audiobooks from all over the world for free, anywhere, anytime or create your own music playlists with the latest songs to suit your mood.\n\nWHY GO PREMIUM?\n• Listen to albums and playlists without ad breaks.\n• Download and listen to music and podcasts offline, wherever you are.\n• Jump back in and listen to your top songs with on-demand playback.\n• Choose from 4 subscription options – Individual, Duo, Family, Student. There’s no commitment and you can cancel any time\n\nAudiobooks in Premium currently available in Australia, the UK & the US. Discover 250,000+ titles, 15 hours/month of available listening for Premium Individual subscribers and Duo & Family plan managers.\n\nExperience Spotify on your Wear OS device:\n• Enjoy your favourite music and podcasts without having your phone around.\n• Control playback on your phone or any of your Spotify compatible devices.\n• Download your favourite content for offline listening on the go (Premium only).\n• Get instant access to Spotify with our Tiles and Complications.\n\nPlease note: This app features Nielsen’s audience measurement software which will allow you to contribute to market research, such as Nielsen’s Audio Measurement. If you don't want to participate, you can opt-out within the app settings. To learn more about our digital audience measurement products and your choices in regard to them, please visit https://www.nielsen.com/digitalprivacy for more information.",
      "developer": {
        "id": "Spotify+AB",
        "name": "Spotify AB",
        "url": "https://play.google.com/store/apps/developer?id=Spotify+AB",
        "email": "support@spotify.com",
        "address": "Regeringsgatan 19\n111 53 Stockholm\nSweden",
        "website": "https://www.spotify.com"
      },
      "rating": {
        "value": 4.3,
        "max": 5,
        "count": 36009288
      },
      "price": {
        "current": 0,
        "original": null,
        "currency": "USD",
        "is_free": true,
        "displayed": null
      },
      "reviews_count": 36009288,
      "category": "Music & Audio",
      "categories": null,
      "installs": {
        "display": "1,000,000,000+",
        "count": 3066062205
      },
      "version": null,
      "minimum_os_version": null,
      "size": null,
      "released_at": "2014-05-27T03:00:00.000Z",
      "updated_at": "2026-07-27T03:00:00.000Z",
      "update_notes": "We’re always making changes and improvements to Spotify. To make sure you don’t miss a thing, just keep your Updates turned on.",
      "image_urls": [
        "https://play-lh.googleusercontent.com/c1jnjL-9CIFlwlTMX3xNyeo8aEH39sNuC5zpTHhfW8keGxQE3TBMRX9Rm3VqM3E03Cyl9AqtnxuKvxJpcW0WCA",
        "https://play-lh.googleusercontent.com/YxWsaNLSEBvLh04geMOADhSq6Ln5LmRrpa51ixZ7YkcEwmPQ-wdtnvoZDjVAgufbi2et0IlTVDAsvCCmlsJYnNA"
      ],
      "genres": [
        "Music & Audio"
      ],
      "tags": [
        "#1 top free music & audio",
        "Music & Audio"
      ],
      "similar_apps": [
        {
          "id": "com.spotify.tv.android",
          "title": "Spotify: Music & Podcasts",
          "url": "https://play.google.com/store/apps/details?id=com.spotify.tv.android"
        },
        {
          "id": "com.spotify.s4a",
          "title": "Spotify for Artists",
          "url": "https://play.google.com/store/apps/details?id=com.spotify.s4a"
        }
      ],
      "ext": {
        "appdata": {
          "type": "google_play_info_organic",
          "rank_group": 1,
          "rank_absolute": 1,
          "position": "left",
          "app_id": "com.spotify.music",
          "title": "Spotify: Music and Podcasts",
          "url": "https://play.google.com/store/apps/details?id=com.spotify.music&hl=en&gl=us",
          "icon": "https://play-lh.googleusercontent.com/IzQgYCcnCFCD08GR-3bdtcT8xzOvrNkC84avGT5CwTX2VIqmTmKKJcP_Cd4JoBOdmCMlTndlOzV6hrthg2fOWA",
          "description": "With the Spotify music and podcast app, you can play millions of songs, albums and original podcasts for free. We have even added audiobooks, so you can enjoy thousands of stories wherever you are!\n\nStream music and podcasts, listen to audiobooks, discover albums, playlists or even single songs for free on your mobile or tablet. Subscribe to Spotify Premium to download and listen offline wherever you are.\n\nSpotify gives you access to a world of free music, curated playlists, artists, and podcasts you love. Discover podcasts, new music, top songs or listen to your favorite artists and albums.\n\nWHY SPOTIFY FOR MUSIC AND PODCASTS?\n• Listen to over 80 million songs and 4 million podcasts (and counting)\n• Enjoy over 300,000 newly added audiobook titles\n• Discover new music, albums, playlists and original podcasts.\n• Search for your favorite song or artist by typing a lyric\n• Enjoy amazing sound quality on music and podcasts across all devices.\n• Create and share your own music playlists to suit your mood or discover other playlists you might like.\n• Listen to daily music mixes made just for you.\n• Explore top songs from different genres, countries or decades.\n• Subscribe to your favourite podcasts so that you never miss an episode, then curate your very own podcast library.\n• Bookmark individual podcasts into Playlists\n• Listen to music and podcasts on your mobile, tablet, desktop, PlayStation, Chromecast, TV, Wear OS or wearable device.\n\nListen and discover the latest music from artists like;\n• Bad Bunny\n• Billie Eilish\n• Renzo Pianciola\n• The Temper Trap\n• Harry Styles\n\nListen to your favorite music artists all day every day via the Popular Radio playlist feature. Here are just some of the artists we’ve already curated;\n• Taylor Swift\n• Drake\n• Eminem\n• Coldplay\n• Paolo Nutini\n• Fleetwood Mac\n\nListen to over 40 category genres - New Releases, Charts, Live Events, Made for You, At Home, Only You, Summer, Pop, Workout, Hip-Hop, Mood, Party, Pride, Dance/Electronic, Alternative, Indie, Equal, Wellness, Rock, Frequency, R&B, Disney,, Throwback, Radar, Chill, Sleep, In the car, Kids & Family, Caribbean, Classical, Romance, Jazz, Instrumental, Afro, Christian and Gospel and Country.\n\nListen to popular and exclusive podcasts like;\n• The Joe Rogan Experience\n• Modern Wisdom\n• 2 Bears, 1 Cave with Tom Segura and Bert Kreischer\n• Call Her Daddy and Crime Junkie\n\nSearch, discover and play music, podcasts and audiobooks from all over the world for free, anywhere, anytime or create your own music playlists with the latest songs to suit your mood.\n\nWHY GO PREMIUM?\n• Listen to albums and playlists without ad breaks.\n• Download and listen to music and podcasts offline, wherever you are.\n• Jump back in and listen to your top songs with on-demand playback.\n• Choose from 4 subscription options – Individual, Duo, Family, Student. There’s no commitment and you can cancel any time\n\nAudiobooks in Premium currently available in Australia, the UK & the US. Discover 250,000+ titles, 15 hours/month of available listening for Premium Individual subscribers and Duo & Family plan managers.\n\nExperience Spotify on your Wear OS device:\n• Enjoy your favourite music and podcasts without having your phone around.\n• Control playback on your phone or any of your Spotify compatible devices.\n• Download your favourite content for offline listening on the go (Premium only).\n• Get instant access to Spotify with our Tiles and Complications.\n\nPlease note: This app features Nielsen’s audience measurement software which will allow you to contribute to market research, such as Nielsen’s Audio Measurement. If you don't want to participate, you can opt-out within the app settings. To learn more about our digital audience measurement products and your choices in regard to them, please visit https://www.nielsen.com/digitalprivacy for more information.",
          "reviews_count": 36009288,
          "rating": {
            "rating_type": "Max5",
            "value": 4.3,
            "votes_count": 36009288,
            "rating_max": 5
          },
          "price": {
            "current": 0,
            "regular": null,
            "max_value": null,
            "currency": "USD",
            "is_price_range": false,
            "displayed_price": null
          },
          "is_free": true,
          "main_category": "Music & Audio",
          "installs": "1,000,000,000+",
          "installs_count": 3066062205,
          "developer": "Spotify AB",
          "developer_id": "Spotify+AB",
          "developer_url": "https://play.google.com/store/apps/developer?id=Spotify+AB",
          "developer_email": "support@spotify.com",
          "developer_address": "Regeringsgatan 19\n111 53 Stockholm\nSweden",
          "developer_website": "https://www.spotify.com",
          "version": null,
          "minimum_os_version": null,
          "size": null,
          "released_date": "2014-05-27T03:00:00.000Z",
          "last_update_date": "2026-07-27T03:00:00.000Z",
          "update_notes": "We’re always making changes and improvements to Spotify. To make sure you don’t miss a thing, just keep your Updates turned on.",
          "images": [
            "https://play-lh.googleusercontent.com/c1jnjL-9CIFlwlTMX3xNyeo8aEH39sNuC5zpTHhfW8keGxQE3TBMRX9Rm3VqM3E03Cyl9AqtnxuKvxJpcW0WCA",
            "https://play-lh.googleusercontent.com/YxWsaNLSEBvLh04geMOADhSq6Ln5LmRrpa51ixZ7YkcEwmPQ-wdtnvoZDjVAgufbi2et0IlTVDAsvCCmlsJYnNA"
          ],
          "videos": null,
          "similar_apps": [
            {
              "app_id": "com.spotify.tv.android",
              "title": "Spotify: Music & Podcasts",
              "url": "https://play.google.com/store/apps/details?id=com.spotify.tv.android"
            },
            {
              "app_id": "com.spotify.s4a",
              "title": "Spotify for Artists",
              "url": "https://play.google.com/store/apps/details?id=com.spotify.s4a"
            }
          ],
          "more_apps_by_developer": null,
          "genres": [
            "Music & Audio"
          ],
          "tags": [
            "#1 top free music & audio",
            "Music & Audio"
          ],
          "category_drift_probe": true
        }
      }
    }
  },
  "credits_used": 5,
  "credits_remaining": 9999,
  "request_id": "req_example000000",
  "cached": false
}

Live sample illustrating the unified response shape. Field values reflect the record you query.

API Details

How does the Google Play App Info API work?

Send a GET request with your API key and get back clean, structured JSON in our unified schema. Supported computed fields are populated when the source provides the required inputs.

Method

GET

Response

JSON

Why SocialCrawl

Why use SocialCrawl for Google Play App Info data?

We handle the complexity of Google Play data extraction so you can focus on building. Unified schema, AI enrichment, and zero platform logic in your code.

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 48 platforms covering 10B+ monthly active users.

One schema, every platform

Query 48 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"
    }
  }
}
+ 48 platforms
FAQ

Have a question? We got answers

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

Contact us
How do I get full app detail from the Google Play app data API?
Send a GET request to /v1/google_play/app-info with the package name (app_id) like com.spotify.music. The response is a single canonical App with description, developer, install count, current version, screenshots, genres, and similar apps.
What fields does the Google Play app-info endpoint return?
Beyond title and icon, app-info returns the full description, developer name, install count, content rating, current version, last-updated date, screenshot URLs, genre list, average rating with count, and a list of similar apps.
Where do I find the package name to pass?
Run app-search or app-listings-search first. Every result carries its package name as app_id. That value (for example com.spotify.music) is the identifier you pass to app-info and app-reviews.
How much does the Google Play app data endpoint cost?
App-info runs on the advanced tier at 5 credits per call. New accounts get 100 free credits with no credit card, and a package name that returns nothing is refunded automatically.
Can I get screenshots and similar apps?
Yes. The detail response includes an array of screenshot URLs and a similar-apps list, each entry carrying its own package name so you can fan out from one app into related listings.

Ask AI about SocialCrawl

Ready to scrape Google Play App Info data?

Get your API key and start pulling Google Play data in under 60 seconds.

Start for free

🤖 AI agent or LLM? Read this page as markdown