# App Store & Google Play Rankings — Charts and Keyword Ranks (`chorelet/app-rankings-scraper`) Actor

Top charts and keyword rankings from the App Store and Google Play in one schema: position, app, developer, price, rating and store page, per country and category. Track your own apps and see where they rank — or do not.

- **URL**: https://apify.com/chorelet/app-rankings-scraper.md
- **Developed by:** [Chorelet](https://apify.com/chorelet) (community)
- **Categories:** Developer tools, Marketing, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.70 / 1,000 ranking positions

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## App Store & Google Play Rankings — Charts and Keyword Ranks

See where apps actually stand: **top charts and search rankings from both stores in one table**. Pick charts (top free, paid, grossing), keywords, countries and categories, and download position, app, developer, price, rating and store link as JSON, CSV or Excel — or pull them through the API into your own ASO dashboard.

Track your own apps and the Actor keeps only their positions, and tells you in the run summary every chart and keyword where they did **not** rank at all.

### Why this Actor

- **Both stores in one table.** Chart and keyword positions for the App Store and Google Play with identical fields — one run instead of two ASO tools.
- **Answers the ASO question directly.** Put your app ids in *Track only these apps* and every run returns just your positions, plus a list of the keywords where you did not rank at all.
- **Per country and per genre.** Every store front is a separate ranking, so you can watch ten markets on a schedule and see them move.
- **Cheap enough to run daily.** A position costs $0.001; a 100-position chart in five countries is half a cent.

### Sample output

One item of the dataset (long values shortened):

```json
{
  "platform": "google",
  "source": "chart",
  "chart": "free",
  "keyword": null,
  "country": "us",
  "rank": 1,
  "appName": "Muse from Meta",
  "developer": "Meta Platforms, Inc.",
  "score": 4.707619,
  "url": "https://play.google.com/store/apps/details?id=com.facebook.aura"
}
```

### What you get

- Both stores, one schema — no separate ASO tool per platform
- Top free / top paid / top grossing, overall or per genre and category
- Keyword rankings in store search order, per country
- "Where do my apps rank?" mode: track app ids, package names or parts of a name
- Ratings and prices as the store publishes them
- Monitored daily

### Input

- **Stores** — App Store, Google Play or both.
- **Top charts** — any of `free`, `paid`, `grossing`. Leave empty to only track keywords.
- **Keywords** — search terms, ranked in store search order.
- **Track only these apps** — App Store ids (`310633997`), Google Play package names (`com.whatsapp`) or a piece of the app name.
- **Countries**, **Language (Google Play)**, **App Store genre id**, **Google Play category**, **Positions per ranking**.

### Limits and notes

- App Store charts return at most **100 positions** per country and genre; App Store search returns at most 200 results.
- Apple rate-limits its public endpoints at roughly 20 requests a minute — the Actor paces itself, so many countries × many keywords take a few minutes.
- App Store charts do not publish ratings; Google Play does. Rating fields are null where the store does not provide them.
- Rankings are what the store shows to a visitor from that store front without a personal history — the same list you would see in a fresh browser, not a personalised one.

### Input example

```json
{
  "platforms": [
    "apple",
    "google"
  ],
  "charts": [
    "free"
  ],
  "keywords": [
    "meditation"
  ],
  "countries": [
    "us"
  ],
  "language": "en",
  "maxResults": 50
}
```

### How much does it cost?

Pay per position — no subscription, no minimum, no charge for platform usage.

| Volume | Price |
|---|---|
| 1,000 positions | $1.00 |
| 10,000 positions | $10.00 |
| 100,000 positions | $100.00 |

The Apify **free plan includes $5 of usage every month** — about 5,000 positions with this Actor, no card needed. Nothing else is charged: platform usage is included in the price, and Apify Bronze, Silver and Gold subscribers get 10%, 20% and 30% off these prices.

### Use it from code, n8n, Make, Zapier or an AI agent

Run the Actor and download the dataset in one call (JSON by default; add `&format=csv` or `xlsx`):

```bash
curl -X POST "https://api.apify.com/v2/acts/chorelet~app-rankings-scraper/run-sync-get-dataset-items?token=$APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"platforms": ["apple", "google"], "charts": ["free"], "keywords": ["meditation"], "countries": ["us"], "language": "en", "maxResults": 50}'
```

Python:

```python
from apify_client import ApifyClient

client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("chorelet/app-rankings-scraper").call(run_input={"platforms": ["apple", "google"], "charts": ["free"], "keywords": ["meditation"], "countries": ["us"], "language": "en", "maxResults": 50})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)
```

- **n8n, Make, Zapier** — use the Apify node/module: run the Actor, then "get dataset items".
- **Google Sheets, Slack, webhooks** — add an integration on the run's *Integrations* tab.
- **AI agents** — the Actor is available as a tool through the Apify MCP server; the dataset schema describes every field for the model.
- **Schedules** — run it hourly, daily or weekly from the *Schedules* tab.

### FAQ

**How do I track my own app's keyword rank?**

Put the keywords in *Keywords* and your App Store id or Google Play package name in *Track only these apps*, then schedule the Actor daily. Each run stores one row per keyword where the app ranks, and the SUMMARY lists the keywords where it did not appear in the top results.

**How deep do the rankings go?**

App Store charts go to 100 positions per country and genre, App Store search to 200 results, Google Play charts and search to several hundred. Set *Positions per ranking* to what you need — you pay per row.

**Can I rank a single category?**

Yes. Use an App Store genre id (`6014` Games, `6013` Health & Fitness, `6002` Utilities, `6000` Business) and a Google Play category (`GAME`, `HEALTH_AND_FITNESS`, `PRODUCTIVITY`, `FINANCE`).

**Are these the same numbers paid ASO tools show?**

They come from the same public store endpoints the stores serve to visitors. Paid tools add estimates of downloads and revenue, which no public source publishes — this Actor reports only what the stores actually show.

**Why is a rating empty?**

App Store chart feeds do not include ratings. Run the keyword mode, or the App Details Actor, when you need ratings for App Store apps.

### Support

Questions, missing fields or a source that changed? Open an issue on the *Issues* tab or write to support@chorelet.app — problems are usually fixed within a day, and the Actor is checked every morning by an automated test run. If the Actor saved you time, a short review on its Store page helps other people find it.

# Actor input Schema

## `platforms` (type: `array`):

Which stores to rank.

## `charts` (type: `array`):

Which charts to read. Leave empty to only track keywords.

## `keywords` (type: `array`):

Search terms to rank, e.g. `meditation`, `budget tracker`. Results come back in store search order — position 1 is the first result a user sees.

## `trackApps` (type: `array`):

App Store IDs (`310633997`), Google Play package names (`com.whatsapp`) or parts of an app name. Only their positions are saved — and the SUMMARY lists every chart or keyword where they did not rank at all. Empty = save the whole ranking.

## `countries` (type: `array`):

Two-letter store fronts, e.g. `us`, `gb`, `de`, `br`. Each country is a separate ranking.

## `language` (type: `string`):

Two-letter language code used for Google Play titles and search.

## `appleCategory` (type: `string`):

Optional. Ranks a single App Store genre, e.g. `6014` Games, `6002` Utilities, `6013` Health & Fitness, `6000` Business. Empty = overall chart.

## `googleCategory` (type: `string`):

Optional. Ranks a single Google Play category, e.g. `GAME`, `HEALTH_AND_FITNESS`, `PRODUCTIVITY`, `FINANCE`. Empty = overall chart.

## `maxResults` (type: `integer`):

How deep to read each chart or search. App Store charts cap at 100, App Store search at 200.

## Actor input object example

```json
{
  "platforms": [
    "apple",
    "google"
  ],
  "charts": [
    "free"
  ],
  "keywords": [
    "meditation"
  ],
  "trackApps": [],
  "countries": [
    "us"
  ],
  "language": "en",
  "maxResults": 50
}
```

# Actor output Schema

## `rankings` (type: `string`):

All ranking rows — items of the default dataset. Use ?format=csv or xlsx on this URL for spreadsheets.

## `summary` (type: `string`):

Rows per chart and keyword, errors, and tracked apps that did not appear.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "platforms": [
        "apple",
        "google"
    ],
    "charts": [
        "free"
    ],
    "keywords": [
        "meditation"
    ],
    "trackApps": [],
    "countries": [
        "us"
    ],
    "language": "en",
    "appleCategory": "",
    "googleCategory": "",
    "maxResults": 50
};

// Run the Actor and wait for it to finish
const run = await client.actor("chorelet/app-rankings-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "platforms": [
        "apple",
        "google",
    ],
    "charts": ["free"],
    "keywords": ["meditation"],
    "trackApps": [],
    "countries": ["us"],
    "language": "en",
    "appleCategory": "",
    "googleCategory": "",
    "maxResults": 50,
}

# Run the Actor and wait for it to finish
run = client.actor("chorelet/app-rankings-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "platforms": [
    "apple",
    "google"
  ],
  "charts": [
    "free"
  ],
  "keywords": [
    "meditation"
  ],
  "trackApps": [],
  "countries": [
    "us"
  ],
  "language": "en",
  "appleCategory": "",
  "googleCategory": "",
  "maxResults": 50
}' |
apify call chorelet/app-rankings-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,chorelet/app-rankings-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/xwuvsIdoLhbDAKfzD/builds/TlzDPt3Ubsk58K0AB/openapi.json
