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

App Store App Info API

API 한 번의 호출로 App Store App Info 데이터를 받아 가세요. Returns the full canonical `App` record for one Apple App Store app keyed by its numeric `app_id`: title, description, developer, rating, price, version, minimum iOS version, size, screenshots, supported languages, age advisories, similar apps, and update date. The `app.store` field is always "app_store"; Google-only leaves (installs, genres, developer email/address) are null, and `released_at` is null (Apple deprecates it). Get the `app_id` from /v1/app_store/app-search.

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

숫자 id로 App Store 앱 하나의 전체 정보를 돌려줍니다. 설명과 개발사, 별점, 가격, 버전, 최소 iOS 버전, 용량, 스크린샷, 연령 고지가 담깁니다.

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
App Store API

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

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

요청 예시

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

response = requests.get(
    "https://www.socialcrawl.dev/v1/app_store/app-info",
    params={
    'app_id': '324684580',
    'country': 'United States',
    },
    headers={"x-api-key": "YOUR_API_KEY"},
)

data = response.json()
const response = await fetch(
  "https://www.socialcrawl.dev/v1/app_store/app-info?app_id=324684580&country=United+States",
  {
    headers: { "x-api-key": "YOUR_API_KEY" },
  },
);

const data = await response.json();

파라미터

파라미터필수설명
app_idApple App Store numeric app id (e.g. '324684580'), 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'.
응답 예시

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

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

응답 예시 보기
{
  "success": true,
  "platform": "app_store",
  "endpoint": "/v1/app_store/app-info",
  "data": {
    "app": {
      "id": "324684580",
      "store": "app_store",
      "url": "https://apps.apple.com/us/app/spotify-music-and-podcasts/id324684580",
      "title": "Spotify: Music and Podcasts",
      "icon": "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource211/v4/1d/46/60/1d46608e-1e7e-d1cc-f2ef-1d246ddd06d6/Placeholder.mill/512x512bb.jpg",
      "description": "With the Spotify app, you can explore an extensive library of music and podcasts for free. Curate the best playlists and stream millions of free songs, albums, and original podcasts on your phone or tablet. Subscribe to Spotify Premium to download and listen offline wherever you are, and unlock our catalog of audiobooks.\n\nWhy choose Spotify as your go-to music and podcast app? Here, you can:\n• Listen to over 100 million songs and 6 million podcast titles\n• Explore our selection of specially-crafted artist playlists\n• Easily search for your favorite songs, albums, artists, and podcasts\n• Discover personalized music recommendations tailored to your unique taste\n• Subscribe to your favorite free podcasts so you never miss an episode, and even curate your own podcast library\n\nSpotify Free is more than a music player - find the sounds you love and stream music and podcasts online, for free. Enjoy personalized playlists or curate and share your own, discover the hottest new releases, explore upcoming events from your favorites, and more.\n\n• Stream millions of free songs and podcasts\n• Create playlists with your favorite music\n• Share songs and playlists with friends and family (feature restrictions may apply in some regions)\n• Discover personalized playlists made just for you, and collaborate on playlists with your friends\n• Enjoy your personal Discover Weekly playlist every week\n• Stay in the know with the Release Radar and New Music Friday playlists\n• Find nearby events and gigs by your favorite artists\n• See your most played songs, genres, artists, and more with yearly Spotify Wrapped\n• Stream music across your devices with Spotify\n• Use Spotify Connect and enjoy listening on smart speakers, desktop, laptop, smart TV, Chromecast, PlayStation®, Xbox®, smartwatch, in your car, and more - limited number of device models apply\n\nSpotify Premium - a great way to enjoy the benefits of an offline music player, and stream music without WiFi. By pressing download, you can access your songs, playlists, podcasts, and audiobooks offline, wherever you are.\n• Listen to music, podcasts, and audiobooks - all in one place\n• Ad-free music listening: enjoy your music with no ad interruptions\n• Enjoy full on-demand playback\n• Audiobooks in Premium are currently available in the US, UK, Australia, Ireland, New Zealand, and Canada. Discover 250,000+ audiobook titles with 15 hours/month of available listening for Premium Individual subscribers and Duo & Family plan managers.\n• Superior sound quality on supported devices\n• AI DJ: a personalized guide that knows your music taste so well it can choose what to play for you\n• Enjoy on desktop, phone, tablet, computer, smartwatch, and in your car\n• Listen and control the listening session together by hosting a Jam in real time with friends\n• Download songs, podcasts, and audiobooks for offline listening, without an internet connection\n• No contract required - cancel your subscription whenever you want\n\nSpotify lets you play music wherever you are. Listen to your favorite songs and discover new music, podcasts, and audiobooks with the Spotify app!\n\nLOVE SPOTIFY?\nFollow us on Instagram: https://www.instagram.com/spotify\nFollow us on TikTok: https://www.tiktok.com/@spotify",
      "developer": {
        "id": "324684583",
        "name": "Spotify",
        "url": "https://apps.apple.com/us/developer/spotify/id324684583?platform=iphone",
        "email": null,
        "address": null,
        "website": null
      },
      "rating": {
        "value": 4.8,
        "max": 5,
        "count": 41186789
      },
      "price": {
        "current": 0,
        "original": null,
        "currency": null,
        "is_free": true,
        "displayed": null
      },
      "reviews_count": 41186789,
      "category": null,
      "categories": null,
      "installs": null,
      "version": "Version 9.1.66",
      "minimum_os_version": "Requires iOS 16.1 or later.",
      "size": "287.4 MB",
      "released_at": null,
      "updated_at": "2026-07-20T10:15: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://is1-ssl.mzstatic.com/image/thumb/PurpleSource221/v4/28/58/0d/28580d62-47f7-d6ce-aa73-69e3dbe21642/IOS_-_6.5_-_S01_-_EN_-_US.png/512x512bb.jpg",
        "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource211/v4/13/fb/21/13fb2184-8c5c-190c-86af-582bb5430446/IOS_-_6.5_-_S02_-_EN_-_US.png/512x512bb.jpg"
      ],
      "languages": [
        "EN"
      ],
      "advisories": [
        "13+"
      ],
      "similar_apps": [
        {
          "id": "912390687",
          "title": "TREBEL Music - Download Songs",
          "url": "https://apps.apple.com/us/app/trebel-music-download-songs/id912390687"
        },
        {
          "id": "1447312762",
          "title": "Music Downloader / MP3 Player",
          "url": "https://apps.apple.com/us/app/music-downloader-mp3-player/id1447312762"
        }
      ],
      "more_by_developer": [
        {
          "id": "1056182234",
          "title": "Spotify for Creators",
          "url": "https://apps.apple.com/us/app/spotify-for-creators/id1056182234"
        },
        {
          "id": "1222021797",
          "title": "Spotify for Artists",
          "url": "https://apps.apple.com/us/app/spotify-for-artists/id1222021797"
        }
      ],
      "ext": {
        "appdata": {
          "type": "app_store_info_organic",
          "rank_group": 1,
          "rank_absolute": 1,
          "position": "left",
          "app_id": "324684580",
          "title": "Spotify: Music and Podcasts",
          "subtitle": "Songs, Playlists & Audiobooks",
          "url": "https://apps.apple.com/us/app/spotify-music-and-podcasts/id324684580",
          "icon": "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource211/v4/1d/46/60/1d46608e-1e7e-d1cc-f2ef-1d246ddd06d6/Placeholder.mill/512x512bb.jpg",
          "description": "With the Spotify app, you can explore an extensive library of music and podcasts for free. Curate the best playlists and stream millions of free songs, albums, and original podcasts on your phone or tablet. Subscribe to Spotify Premium to download and listen offline wherever you are, and unlock our catalog of audiobooks.\n\nWhy choose Spotify as your go-to music and podcast app? Here, you can:\n• Listen to over 100 million songs and 6 million podcast titles\n• Explore our selection of specially-crafted artist playlists\n• Easily search for your favorite songs, albums, artists, and podcasts\n• Discover personalized music recommendations tailored to your unique taste\n• Subscribe to your favorite free podcasts so you never miss an episode, and even curate your own podcast library\n\nSpotify Free is more than a music player - find the sounds you love and stream music and podcasts online, for free. Enjoy personalized playlists or curate and share your own, discover the hottest new releases, explore upcoming events from your favorites, and more.\n\n• Stream millions of free songs and podcasts\n• Create playlists with your favorite music\n• Share songs and playlists with friends and family (feature restrictions may apply in some regions)\n• Discover personalized playlists made just for you, and collaborate on playlists with your friends\n• Enjoy your personal Discover Weekly playlist every week\n• Stay in the know with the Release Radar and New Music Friday playlists\n• Find nearby events and gigs by your favorite artists\n• See your most played songs, genres, artists, and more with yearly Spotify Wrapped\n• Stream music across your devices with Spotify\n• Use Spotify Connect and enjoy listening on smart speakers, desktop, laptop, smart TV, Chromecast, PlayStation®, Xbox®, smartwatch, in your car, and more - limited number of device models apply\n\nSpotify Premium - a great way to enjoy the benefits of an offline music player, and stream music without WiFi. By pressing download, you can access your songs, playlists, podcasts, and audiobooks offline, wherever you are.\n• Listen to music, podcasts, and audiobooks - all in one place\n• Ad-free music listening: enjoy your music with no ad interruptions\n• Enjoy full on-demand playback\n• Audiobooks in Premium are currently available in the US, UK, Australia, Ireland, New Zealand, and Canada. Discover 250,000+ audiobook titles with 15 hours/month of available listening for Premium Individual subscribers and Duo & Family plan managers.\n• Superior sound quality on supported devices\n• AI DJ: a personalized guide that knows your music taste so well it can choose what to play for you\n• Enjoy on desktop, phone, tablet, computer, smartwatch, and in your car\n• Listen and control the listening session together by hosting a Jam in real time with friends\n• Download songs, podcasts, and audiobooks for offline listening, without an internet connection\n• No contract required - cancel your subscription whenever you want\n\nSpotify lets you play music wherever you are. Listen to your favorite songs and discover new music, podcasts, and audiobooks with the Spotify app!\n\nLOVE SPOTIFY?\nFollow us on Instagram: https://www.instagram.com/spotify\nFollow us on TikTok: https://www.tiktok.com/@spotify",
          "reviews_count": 41186789,
          "rating": {
            "rating_type": "Max5",
            "value": 4.8,
            "votes_count": 41186789,
            "rating_max": 5
          },
          "price": {
            "current": 0
          },
          "is_free": true,
          "main_category": null,
          "categories": null,
          "languages": [
            "EN"
          ],
          "advisories": [
            "13+"
          ],
          "developer": "Spotify",
          "developer_id": "324684583",
          "developer_url": "https://apps.apple.com/us/developer/spotify/id324684583?platform=iphone",
          "version": "Version 9.1.66",
          "minimum_os_version": "Requires iOS 16.1 or later.",
          "size": "287.4 MB",
          "released_date": null,
          "last_update_date": "2026-07-20T10:15: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://is1-ssl.mzstatic.com/image/thumb/PurpleSource221/v4/28/58/0d/28580d62-47f7-d6ce-aa73-69e3dbe21642/IOS_-_6.5_-_S01_-_EN_-_US.png/512x512bb.jpg",
            "https://is1-ssl.mzstatic.com/image/thumb/PurpleSource211/v4/13/fb/21/13fb2184-8c5c-190c-86af-582bb5430446/IOS_-_6.5_-_S02_-_EN_-_US.png/512x512bb.jpg"
          ],
          "similar_apps": [
            {
              "app_id": "912390687",
              "title": "TREBEL Music - Download Songs",
              "url": "https://apps.apple.com/us/app/trebel-music-download-songs/id912390687"
            },
            {
              "app_id": "1447312762",
              "title": "Music Downloader / MP3 Player",
              "url": "https://apps.apple.com/us/app/music-downloader-mp3-player/id1447312762"
            }
          ],
          "more_apps_by_developer": [
            {
              "app_id": "1056182234",
              "title": "Spotify for Creators",
              "url": "https://apps.apple.com/us/app/spotify-for-creators/id1056182234"
            },
            {
              "app_id": "1222021797",
              "title": "Spotify for Artists",
              "url": "https://apps.apple.com/us/app/spotify-for-artists/id1222021797"
            }
          ],
          "category_drift_probe": true
        }
      }
    }
  },
  "credits_used": 5,
  "credits_remaining": 9999,
  "request_id": "req_example000000",
  "cached": false
}

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

API 상세

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

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

메서드

GET

응답 형식

JSON

왜 SocialCrawl인가요

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

App Store 데이터 추출에서 까다로운 부분은 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, 요금제, 기능에 대한 질문과 답변입니다.

문의하기
앱스토어 앱 상세는 어떻게 가져오나요?
324684580 같은 숫자 앱 id를 담아 GET /v1/app_store/app-info를 호출하세요. 설명, 현재 버전, 최소 iOS, 용량, 스크린샷, 지원 언어, 연령 등급, 유사 앱이 포함된 단일 App이 통합 스키마로 와요.
app-info 엔드포인트는 어떤 필드를 반환하나요?
제목과 아이콘에 더해, 전체 설명, 현재 버전, 최소 iOS 버전, 앱 용량, 스크린샷 URL, 지원 언어 목록, 연령 등급, 평균 평점과 평가 수, 그리고 유사 앱 목록까지 받아볼 수 있어요. 설치 수는 구글플레이 전용이라 여기서는 null로 와요.
넘길 숫자 앱 id는 어디에서 찾나요?
먼저 app-search나 app-listings-search를 호출하세요. 모든 결과에 숫자 앱 id가 담겨 와요. 스포티파이의 324684580 같은 그 값이 app-info와 app-reviews에 넘기는 식별자예요. 구글식 패키지명이 아니에요.
앱스토어 앱 데이터 엔드포인트는 크레딧이 얼마인가요?
app-info는 어드밴스드 티어로 호출당 5 크레딧이에요. 새 계정에는 100 크레딧을 무료로 드리고, 결과가 없는 앱 id는 크레딧이 자동으로 환불돼요.
스크린샷과 지원 언어도 받아올 수 있나요?
네, 상세 응답에 스크린샷 URL 배열, 지원 언어 목록, 연령 등급이 담겨요. iOS 리스팅을 구분 짓는 애플 전용 필드예요. 유사 앱 목록도 함께 와서, 한 앱에서 관련 앱으로 이어서 조회할 수 있어요.

AI에게 SocialCrawl을 물어보세요

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

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

무료로 시작하기

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