100 크레딧 무료, 카드 등록 없이지금 시작하기
Logo
Google Play logo
100 크레딧 무료, 카드 등록 없이

Google Play App Info API

API 한 번의 호출로 Google Play App Info 데이터를 받아 가세요. 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.

2026년 9월 업데이트SocialCrawl 팀이 직접 관리해요

패키지명으로 Google Play 앱 하나의 전체 정보를 돌려줍니다. 설명과 개발사 연락처, 별점, 가격, 설치 수, 버전, 용량, 스크린샷, 장르까지 들어 있습니다.

app_id를 이미 들고 있고 검색 결과에 없던 상세 항목이 필요할 때 사용하세요.

65개 플랫폼을 병렬로 검색합니다

·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·Apple Music logoApple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Yelp logoYelp·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·Finance logoFinance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility logoUtility·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·Apple Music logoApple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Yelp logoYelp·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·Finance logoFinance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility logoUtility·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·Apple Music logoApple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Yelp logoYelp·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·Finance logoFinance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility logoUtility·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·Apple Music logoApple Music·TikTok Shop logoTikTok Shop·Amazon Shop logoAmazon Shop·Google Shopping logoGoogle Shopping·Trustpilot logoTrustpilot·TripAdvisor logoTripAdvisor·Yelp logoYelp·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·Finance logoFinance·Polymarket logoPolymarket·Tavily logoTavily·Hacker News logoHacker News·GitHub logoGitHub·Perplexity logoPerplexity·Naver logoNaver·Utility logoUtility·Universal Search logoUniversal Search
Google Play API

App Info API로 무엇을 할 수 있을까요

App Info 엔드포인트가 통합 스키마와 계산 필드를 담은 Google Play 데이터를 한 번의 요청으로 보내드려요. 스크래핑 인프라를 직접 만들거나 유지할 필요가 없어요.

요청 예시

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

response = requests.get(
    "https://www.socialcrawl.dev/v1/google_play/app-info",
    params={
    'app_id': 'com.spotify.music',
    'country': 'United States',
    },
    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&country=United+States",
  {
    headers: { "x-api-key": "YOUR_API_KEY" },
  },
);

const data = await response.json();

파라미터

파라미터필수설명
app_idGoogle Play package name (e.g. 'com.spotify.music'), from app-search.
country아니오Storefront country as an ISO code ('US'), a full name, or a numeric code. Defaults to the US.
language아니오Language code (e.g. 'en'). Defaults to 'en'.
응답 예시

Google Play App Info API는 무엇을 돌려주나요

모든 응답은 하나의 통합 스키마를 따라요. 크레딧을 쓰기 전에 어떤 필드가 돌아오는지, 실제 응답 본문 그대로 확인해 보세요.

응답 예시 보기
{
  "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
}

통합 응답 구조를 보여 주는 실제 샘플이에요. 필드 값은 조회한 대상에 따라 달라져요.

API 상세

Google Play App Info API는 어떻게 동작하나요

API 키와 함께 GET 요청을 보내면, 통합 스키마와 계산 필드를 담은 깔끔한 JSON이 돌아와요.

메서드

GET

응답 형식

JSON

왜 SocialCrawl인가요

Google Play App Info 데이터는 왜 SocialCrawl로 가져올까요

Google Play 데이터 추출에서 까다로운 부분은 SocialCrawl이 가려 드려요. 통합 스키마, AI 인리치먼트, 그리고 코드에 남지 않는 플랫폼 로직까지.

개발자 우선

소셜 미디어 데이터를 몇 초 만에 수집하는 방법

개발자를 위한 가장 빠른 소셜 미디어 스크래핑 API. 월간 활성 사용자 100억 명 이상을 포괄하는 65개 플랫폼에서 프로필, 게시물, 댓글, 분석 데이터를 수집하세요.

모든 플랫폼을 하나의 스키마로

동일한 응답 구조로 65개 플랫폼을 조회하세요. 연동은 한 번이면 충분합니다.

단순 수집을 넘어 계산된 필드 제공

엔드포인트가 해당 지표를 지원하고 계산에 필요한 원본 값이 있을 때, 정규화된 레코드에 engagement_rate, estimated_reach, content_category, language를 함께 담아 바로 활용할 수 있습니다.

코드 한 줄 쓰기 전에, 데이터부터

Visual Data Explorer에 URL만 붙여넣으면 결과 카드와 정형화된 테이블, CSV 내보내기를 바로 사용할 수 있습니다.

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"
    }
  }
}
+ 65개 플랫폼
자주 묻는 질문

자주 묻는 질문

API, 요금제, 기능에 대한 질문과 답변입니다.

문의하기
구글플레이 앱 상세는 어떻게 가져오나요?
com.spotify.music 같은 패키지명(app_id)을 담아 GET /v1/google_play/app-info를 호출하세요. 설명, 개발자, 설치 수, 현재 버전, 스크린샷, 장르, 유사 앱이 포함된 단일 App이 통합 스키마로 와요.
app-info 엔드포인트는 어떤 필드를 반환하나요?
제목과 아이콘에 더해, 전체 설명, 개발자 이름, 설치 수, 콘텐츠 등급, 현재 버전, 최종 업데이트일, 스크린샷 URL, 장르 목록, 평균 평점과 평가 수, 그리고 유사 앱 목록까지 받아볼 수 있어요.
넘길 패키지명은 어디에서 찾나요?
먼저 app-search나 app-listings-search를 호출하세요. 모든 결과에 패키지명이 app_id로 담겨 와요. com.spotify.music 같은 그 값이 app-info와 app-reviews에 넘기는 식별자예요.
구글플레이 앱 데이터 엔드포인트는 크레딧이 얼마인가요?
app-info는 어드밴스드 티어로 호출당 5 크레딧이에요. 새 계정에는 100 크레딧을 무료로 드리고, 결과가 없는 패키지명은 크레딧이 자동으로 환불돼요.
스크린샷과 유사 앱도 받아올 수 있나요?
네, 상세 응답에 스크린샷 URL 배열과 유사 앱 목록이 담겨요. 유사 앱도 각각 패키지명을 함께 들고 와서, 한 앱에서 관련 앱으로 이어서 조회할 수 있어요.

AI에게 SocialCrawl을 물어보세요

Google Play App Info 데이터, 가져올 준비 되셨어요?

API 키 받고 60초 안에 Google Play 데이터를 받아 가세요.

무료로 시작하기

🤖 AI 에이전트나 LLM이신가요? 이 페이지를 markdown으로 읽어보세요