# App Store App Info API (https://www.socialcrawl.dev/platforms/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. Sourced from DataForSEO's task-based App Data API. TL;DR: `GET /v1/app_store/app-info` costs 5 credits per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `app_id` | yes | Apple App Store numeric app id (e.g. '324684580'), from app-search. | | `country` | no | Storefront country as a DFS location name or numeric code. Defaults to the US. | | `language` | no | Language code (e.g. 'en'). Defaults to 'en'. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/app_store/app-info?app_id=324684580" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### 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. See the full App Store API: https://www.socialcrawl.dev/platforms/app_store ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - How to get Apple App Store app detail with an API - What fields does the SocialCrawl App Store app-info endpoint return?