n8n-nodes-apple-app-store-product-api
v0.1.1
Published
Get Apple App Store product details by App Store ID: developer, pricing, ratings, screenshots, in-app purchases, and sample reviews. Apify-backed n8n community node, pay-per-result, and usable as an AI agent tool.
Maintainers
Readme
n8n-nodes-apple-app-store-product-api
An n8n community node that fetches full Apple App Store product details by App Store ID: title, developer, description, version history, price, ratings, screenshots, in-app purchases, supported languages, privacy cards, and sample reviews. It is backed by the Apple App Store Product API on Apify and bills per result, so there are no subscriptions and no minimums.
Installation · Credentials · Operations · Output · Example workflows · Pricing · Resources
What it does
Give the node one or more Apple App Store IDs (or product page URLs), and it returns one item per app with the full product record: developer, description, pricing, ratings, screenshots, version history, in-app purchases, privacy details, and a sample of user reviews. It also works as an AI Agent tool, so an agent can look up app metadata on demand.
- Look up any iOS, iPadOS, or macOS app by numeric App Store ID or by pasting its App Store URL
- Fetch up to 100 apps per run, one result per ID
- Pick the country store to control which regional product page you get
- Toggle sample reviews and related-app lists on or off
- Choose how much data to return per app: Simplified, Raw, or Selected Fields
Installation
Follow the n8n community nodes installation guide:
- In n8n, open Settings > Community Nodes.
- Select Install.
- Enter
n8n-nodes-apple-app-store-product-apias the npm package name. - Agree to the risks of using community nodes, then select Install.
After it installs, the Apple App Store Product node appears in the nodes panel.
n8n Cloud only allows verified community nodes. Until this node is verified, install it on a self-hosted n8n instance.
Credentials
You need a free Apify account and an API token.
- Sign in to the Apify Console.
- Open Settings > Integrations and copy your Personal API token.
- In n8n, create a new Apify API credential and paste the token.
- Use the credential's Test button to confirm it works.
The node also supports Apify OAuth2 if you prefer to connect that way.
Operations
App > Get returns full product details for one or more App Store IDs.
| Parameter | Description |
| --- | --- |
| App Store IDs or URLs | One or more numeric App Store IDs or product page URLs, separated by commas or new lines. Required. |
| Country Store | Two-letter country code (for example us, gb, jp) selecting the App Store region. Defaults to us. |
| Include Sample Reviews | Include the small sample of reviews Apple shows on each product page. On by default. |
| Include Related App Lists | Include the "You May Also Like" and "More By This Developer" lists. Off by default. |
| Output | How much data to return: Simplified, Raw, or Selected Fields. |
Output
Each app is returned as its own n8n item. The API returns more than ten fields per app, so the Output parameter lets you choose how much to return:
- Simplified (default): a compact object with
app_id,title,snippet,developer_name,category,price_text,in_app_purchases_available,rating_average,rating_count,age_rating,link, andlookup_country. This mode is also used automatically when the node runs as an AI Agent tool, to keep responses small. - Raw: every field the API returns for each app, using the original field names below.
- Selected Fields: pick exactly which fields to include.
Fields (Raw and Selected Fields)
| Field | Type | Description |
| --- | --- | --- |
| app_id | integer | Apple App Store product ID |
| title | string | App title |
| snippet | string | Short tagline |
| developer_name | string | Developer name |
| developer_link | string | Developer page URL |
| age_rating | string | Age rating (for example 13+) |
| rating_average | number | Average star rating |
| rating_count | integer | Number of ratings |
| price_text | string | Price label (for example Get or $4.99) |
| in_app_purchases_available | boolean | Whether the app offers in-app purchases |
| logo | string | App icon URL |
| description_text | string | Full app description |
| iphone_screenshots | array | iPhone screenshot URLs |
| ipad_screenshots | array | iPad screenshot URLs |
| version_history | array | Version and release-note history |
| rating_distribution | object | Star counts by 1 to 5 stars |
| review_examples | array | Sample user reviews |
| privacy_description | string | Developer privacy summary |
| privacy_policy_link | string | Privacy policy URL |
| privacy_cards | array | Structured privacy detail cards |
| seller | string | Seller of record |
| size_text | string | Download size |
| category | string | Primary category |
| compatibility | array | Supported devices and OS versions |
| supported_languages_text | string | Supported languages |
| in_app_purchases | array | In-app purchase items and prices |
| copyright | string | Copyright line |
| supports | array | Supported features (for example Family Sharing) |
| featured_in | array | Editorial placements |
| you_may_also_like | array | Recommended apps |
| more_by_this_developer | array | Other apps by the developer |
| link | string | App Store product URL |
| lookup_country | string | Country store used for the lookup |
| lookup_timestamp | string | ISO timestamp of the lookup |
Example workflows
1. Track a competitor's rating and pricing
- Schedule Trigger (daily).
- Apple App Store Product: App Store IDs or URLs set to the competitor's ID, Output
Simplified. - Google Sheets / Airtable: append
rating_average,rating_count, andprice_textwith the date.
2. Build an App Store Optimization (ASO) report
- Manual Trigger.
- Apple App Store Product: paste several App Store IDs, one per line, Output
Selected Fieldswithtitle,category,rating_average,rating_count,size_text, andversion_history. - Set / Merge: compare metadata across the apps.
3. Let an AI Agent look up app details
- AI Agent node.
- Attach Apple App Store Product as a tool.
- Ask "What is the current rating and price of app 284882215 in the UK store?" The agent calls the node (in Simplified mode) and returns the answer.
Pricing
This node calls the Apple App Store Product API on Apify, which is billed pay-per-result with no subscription and no minimums. You pay a small setup fee per run plus a per-app fee for each product returned. Apify also includes a free monthly usage tier that covers typical volumes. See the Actor page for current rates.
Resources
- Apple App Store Product API on Apify
- npm package
- n8n community nodes documentation
- Apify n8n integration guide
