npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

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.

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:

  1. In n8n, open Settings > Community Nodes.
  2. Select Install.
  3. Enter n8n-nodes-apple-app-store-product-api as the npm package name.
  4. 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.

  1. Sign in to the Apify Console.
  2. Open Settings > Integrations and copy your Personal API token.
  3. In n8n, create a new Apify API credential and paste the token.
  4. 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, and lookup_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

  1. Schedule Trigger (daily).
  2. Apple App Store Product: App Store IDs or URLs set to the competitor's ID, Output Simplified.
  3. Google Sheets / Airtable: append rating_average, rating_count, and price_text with the date.

2. Build an App Store Optimization (ASO) report

  1. Manual Trigger.
  2. Apple App Store Product: paste several App Store IDs, one per line, Output Selected Fields with title, category, rating_average, rating_count, size_text, and version_history.
  3. Set / Merge: compare metadata across the apps.

3. Let an AI Agent look up app details

  1. AI Agent node.
  2. Attach Apple App Store Product as a tool.
  3. 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

License

MIT