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

App Store App Info API

Scrape App Store App Info data with one API call. 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. Sourced from DataForSEO's task-based App Data API.

Last updated August 2026Maintained by the SocialCrawl team

Returns one App Store app's full record by numeric id: description, developer, rating, price, version, minimum iOS version, size, screenshots, and age advisories.

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

What can you do with the App Info API?

The App Info endpoint gives you structured App Store 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/app_store/app-info?app_id=324684580"
import requests

response = requests.get(
    "https://www.socialcrawl.dev/v1/app_store/app-info",
    params={
    'app_id': '324684580',
    },
    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",
  {
    headers: { "x-api-key": "YOUR_API_KEY" },
  },
);

const data = await response.json();

Parameters

ParameterRequiredDescription
app_idYesApple App Store numeric app id (e.g. '324684580'), 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 App Store 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": "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
}

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

API Details

How does the App Store 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 App Store App Info data?

We handle the complexity of App Store 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 App Store app data API?
Send a GET request to /v1/app_store/app-info with the numeric app id like 324684580. The response is a single canonical App with description, current version, minimum iOS, size, screenshots, supported languages, age advisories, and similar apps.
What fields does the App Store app-info endpoint return?
Beyond title and icon, app-info returns the full description, current version, minimum iOS version, app size, screenshot URLs, supported-language list, age advisories, average rating with count, and a list of similar apps. Install counts are Google-only and stay null here.
Where do I find the numeric app id to pass?
Run app-search or app-listings-search first. Every result carries its numeric app id. That value (for example 324684580 for Spotify) is the identifier you pass to app-info and app-reviews, not a Google-style package name.
How much does the App Store 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 an app id that returns nothing is refunded automatically.
Can I get screenshots and supported languages?
Yes. The detail response includes an array of screenshot URLs, the full supported-language list, and age advisories, Apple-specific fields that distinguish iOS listings. A similar-apps list lets you fan out from one app into related listings.

Ask AI about SocialCrawl

Ready to scrape App Store App Info data?

Get your API key and start pulling App Store data in under 60 seconds.

Start for free

🤖 AI agent or LLM? Read this page as markdown