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개 플랫폼을 병렬로 검색합니다
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_id | 예 | Apple 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
}통합 응답 구조를 보여 주는 실제 샘플이에요. 필드 값은 조회한 대상에 따라 달라져요.
App Store App Info API는 어떻게 동작하나요
API 키와 함께 GET 요청을 보내면, 통합 스키마와 계산 필드를 담은 깔끔한 JSON이 돌아와요.
메서드
GET
응답 형식
JSON
소셜 미디어 데이터를 몇 초 만에 수집하는 방법
개발자를 위한 가장 빠른 소셜 미디어 스크래핑 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(){
"success": true,
"platform": "tiktok",
"data": {
"author": {
"username": "charlidamelio",
"followers": 152400000
},
"engagement": {
"likes": 12400000000,
"engagement_rate": 0.087
},
"metadata": {
"language": "en",
"content_category": "lifestyle"
}
}
}자주 묻는 질문
API, 요금제, 기능에 대한 질문과 답변입니다.
문의하기앱스토어 앱 상세는 어떻게 가져오나요?
app-info 엔드포인트는 어떤 필드를 반환하나요?
넘길 숫자 앱 id는 어디에서 찾나요?
앱스토어 앱 데이터 엔드포인트는 크레딧이 얼마인가요?
스크린샷과 지원 언어도 받아올 수 있나요?
AI에게 SocialCrawl을 물어보세요
App Store App Info 데이터, 가져올 준비 되셨어요?
API 키 받고 60초 안에 App Store 데이터를 받아 가세요.
