App Store Search & Charts — $0.0003/app avatar

App Store Search & Charts — $0.0003/app

Pricing

from $0.30 / 1,000 apps

Go to Apify Store
App Store Search & Charts — $0.0003/app

App Store Search & Charts — $0.0003/app

You pay only for apps actually returned. Nothing found, nothing charged. App Store metadata and charts from Apple's own published APIs — search by keyword, look up by app ID, or read a country's top free, paid and grossing charts. Ratings, price, version, release notes. No key, no scraping.

Pricing

from $0.30 / 1,000 apps

Rating

0.0

(0)

Developer

Shun Furu

Shun Furu

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

8 days ago

Last modified

Share

App Store Data — search, lookup and top charts

App Store metadata and charts, from Apple's own published APIs. No key, no scraping, no browser.

Input: { "mode": "search", "terms": ["notion", "obsidian"] }
Output: one row per app — ratings, price, version, release notes, category, size

Three modes

Search — find apps by keyword, the way the store's own search works.

{ "mode": "search", "terms": ["password manager", "habit tracker"], "country": "us", "limit": 50 }

Lookup — fetch specific apps by their numeric App Store ID. IDs are batched 100 at a time, so a long watchlist is a handful of requests rather than one per app.

{ "mode": "lookup", "terms": ["1232780281", "1274495053"] }

Charts — the top free, paid or grossing apps for a country.

{ "mode": "chart", "chart": "top-grossing", "country": "jp", "limit": 100 }

Where the data comes from

ModeEndpointWhat it is
Search, Lookupitunes.apple.com/search, /lookupThe iTunes Search API, documented by Apple and served without a key
Chartsrss.applemarketingtools.comApple's own Marketing Tools RSS feed

Both are Apple's, both are public, and neither needs an account. Nothing is scraped from a store page.

No reviews, and therefore no personal data. This returns app metadata — how many ratings an app has and their average, but not the ratings themselves or who wrote them.

Input

FieldTypeDefaultWhat it does
modestringsearchsearch, lookup or chart
termsarray of strings["notion"]Keywords in search mode, numeric app IDs in lookup mode
countrystringusTwo-letter store code — us, gb, jp, de. Prices, availability and charts all differ by country
chartstringtop-freetop-free, top-paid or top-grossing. Chart mode only
limitinteger50Results per term. Apple caps this at 200

Output

FieldTypeDescription
appIdstringNumeric App Store ID — pass it back in lookup mode
bundleIdstringReverse-DNS bundle identifier
name / developerstringApp and publisher
urlstringStore page
category / categoriesstring / arrayPrimary category and the full list
price / currency / isFreenumber / string / booleanIn the requested country's currency
rating / ratingCountnumberAverage and how many ratings it is based on
ratingCurrentVersionnumberAverage for the current version only
versionstringCurrent version
releasedAt / updatedAtstringFirst release, and the current version's release
releaseNotesstringWhat changed in this version
descriptionstringFull store description
sizeBytes / minimumOsVersionnumber / stringDownload size and OS requirement
languagesarrayISO codes the app is localised into
contentRatingstringAge rating
iconstringArtwork URL
ranknumberPosition, in chart mode

Pricing

Price
Starting a run$0.00001 — one US cent per 1,000 runs
Each app returned$0.0003 — 30 US cents per 1,000 apps

A term that matches nothing produces no rows, and errors go to the log and SUMMARY rather than the dataset — so an empty search costs nothing.

Typical uses

  • Competitive tracking. Watch a set of apps and see when the version, price or rating moves.
  • Market research. Pull a chart across several countries and compare.
  • ASO. See which apps a keyword actually returns, and how they are categorised.
  • Release monitoring. updatedAt and releaseNotes tell you what shipped and when.

Limitations — stated up front

  • iOS only. Google Play publishes no comparable open API, so it is not covered rather than scraped.
  • No reviews. Deliberately — review text carries author names, and this stays clear of personal data.
  • Chart rows carry less detail than search rows; take the appId and run lookup mode for the rest.
  • Apple caps results at 200 per request.
  • Rankings and prices are per country. Ask for the country you care about.

Not affiliated

This is an independent tool. It is not affiliated with, endorsed by, or sponsored by Apple Inc. App Store is a trademark of Apple Inc. Data comes from Apple's own publicly documented endpoints.