appstoreprice-hub

Query App Store prices across global regions via appstoreprice.org browser automation.

1|Updated Jun 20, 2026
One-click install
npx skills add https://github.com/riipandi/minis-skills --skill appstoreprice-hub-riipandi
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: appstoreprice-hub
Source: https://github.com/riipandi/minis-skills/tree/main/appstoreprice-hub
Command: npx skills add https://github.com/riipandi/minis-skills --skill appstoreprice-hub-riipandi

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve? Comparing App Store prices across countries is tedious because Apple shows only one region at a time and third-party data often requires API keys. This Skill fetches live cross-region pricing from appstoreprice.org directly in the browser, with no API key or signing implementation needed. ## Core Features & Use Cases - App Search: Search apps by name and retrieve App Store IDs, developers, and categories via the site's signed REST API. - Cross-Region Price Lookup: Fetch prices for a single app across all regions, sorted by USD equivalent, including currency and CNY conversion. - Cheapest Region Ranking: Identify the top N cheapest regions and calculate savings versus the US storefront. - Use Case: A user wants to know where a ChatGPT subscription is cheapest. The Skill searches the app, pulls prices for all regions, and returns a ranked table showing Turkey or Nigeria pricing with the percentage saved versus the US store. ## Quick Start Use the appstoreprice-hub skill to find the cheapest App Store region for the app Notion and show the top 10 regions with savings versus the US price.

Frequently Asked Questions about appstoreprice-hub

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I find the cheapest App Store region for an app?

Search the app by name to get its App Store ID, then fetch prices across all regions sorted by USD value. The result shows each region's currency, local price, and USD equivalent, so the cheapest regions appear first.

How to compare App Store prices between countries without an API key?

Use appstoreprice.org through browser automation. The site embeds its own FNV-1a signing function in a webpack module, which can be reused directly in the page context to call the signed search and list APIs without implementing the algorithm yourself.

Does appstoreprice.org data come from Apple officially?

No, appstoreprice.org is an unofficial comparison site maintained by an independent developer. It fetches and compares App Store prices across global regions with daily updates, but it is not Apple official data.

Why do I get HTTP 403 signature errors when querying appstoreprice.org?

A 403 error means the signing module ID changed after a site update. Re-locate the module by scanning webpackChunk_N_E for the exported signing function, then update the module ID in scripts/api.js.

What are the limitations of browser-based App Store price scraping?

The approach depends on the site's internal webpack structure, so module IDs can break after deployments. It also requires navigating to the /apps page first to load the signing chunk, and prices reflect daily updates rather than real-time App Store data.