WHEN scraping iOS/macOS App Store data (apps, reviews, ratings, search); NOT for installing or testing apps; retrieves structured JSON data using iTunes/App Store APIs with curl and jq formatting
View on GitHubplugins/app/skills/app-store-scraper/SKILL.md
February 1, 2026
Select agents to install to:
npx add-skill https://github.com/mintuz/claude-plugins/blob/main/plugins/app/skills/app-store-scraper/SKILL.md -a claude-code --skill app-store-scraperInstallation paths:
.claude/skills/app-store-scraper/# App Store Scraper
Comprehensive toolkit for retrieving structured data from Apple's App Store and iTunes APIs using curl and jq. All endpoints return JSON that can be parsed and formatted for analysis.
## Quick Start
**Tools Required:**
- `curl` for HTTP requests
- `jq` for JSON parsing and formatting
**Example:**
```bash
# Get app details
curl -s "https://itunes.apple.com/lookup?id=553834731&entity=software" | \
jq '.results[0] | {name: .trackName, rating: .averageUserRating}'
```
## Decision Trees
Use these decision trees to quickly find the right endpoint for your needs.
### ๐ฏ Decision Tree 1: What Data Do You Need?
```
What information do you need?
โ
โโ App Metadata (name, price, developer, description)
โ โโ I know the app ID โ [App Lookup](endpoints/app-lookup.md)
โ โโ I know the bundle ID โ [App Lookup](endpoints/app-lookup.md)
โ โโ I need to search by keyword โ [App Search](endpoints/search.md)
โ
โโ App Discovery
โ โโ Browse top apps or categories โ [App Lists/Feeds](endpoints/lists.md)
โ โโ Search by keyword โ [App Search](endpoints/search.md)
โ โโ Find all apps by a developer โ [Developer Apps](endpoints/developer.md)
โ โโ Get search suggestions โ [Search Suggestions](endpoints/suggestions.md)
โ โโ Find similar apps โ [Similar Apps](endpoints/similar.md)
โ
โโ User Feedback
โโ Read user reviews โ [Reviews](endpoints/reviews.md)
โโ Get rating distribution (1-5 stars) โ [Ratings Histogram](endpoints/ratings.md)
```
### ๐ Decision Tree 2: How Do You Identify the App?
```
How do you identify the app?
โ
โโ I have the numeric app ID (e.g., 553834731)
โ โโ Get app details โ [App Lookup](endpoints/app-lookup.md)
โ โโ Get reviews โ [Reviews](endpoints/reviews.md)
โ โโ Get ratings breakdown โ [Ratings Histogram](endpoints/ratings.md)
โ โโ Find similar apps โ [Similar Apps](endpoints/similar.md)
โ
โโ I have the bundle ID (e.g., com.apple.Numbers)
โ โโ Get app details โ [App Lookup](endpoints/app-lookup.md)
โ
โโ I have the developer ID