# Top free apps in five countries, both stores

**Use case:** 

Read the top free charts of the App Store and Google Play in five markets at once and get one table with position, app, developer and rating. Schedule it daily to watch a market move.

## Input

```json
{
  "platforms": [
    "apple",
    "google"
  ],
  "charts": [
    "free"
  ],
  "keywords": [],
  "trackApps": [],
  "countries": [
    "us",
    "gb",
    "de",
    "br",
    "in"
  ],
  "language": "en",
  "appleCategory": "",
  "googleCategory": "",
  "maxResults": 50
}
```

## Output

```json
{
  "platform": {
    "label": "Store",
    "format": "string"
  },
  "source": {
    "label": "chart or keyword",
    "format": "string"
  },
  "chart": {
    "label": "Chart when source is chart",
    "format": "string"
  },
  "keyword": {
    "label": "Search term when source is keyword",
    "format": "string"
  },
  "country": {
    "label": "Store front",
    "format": "string"
  },
  "rank": {
    "label": "Position, 1 = top",
    "format": "integer"
  },
  "appName": {
    "label": "App name",
    "format": "string"
  },
  "developer": {
    "label": "Developer",
    "format": "string"
  },
  "score": {
    "label": "Average rating where the store publishes it",
    "format": "number"
  },
  "url": {
    "label": "Store page",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [App Store & Google Play Rankings — Charts and Keyword Ranks](https://apify.com/chorelet/app-rankings-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/chorelet/app-rankings-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

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 full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/chorelet/app-rankings-scraper.md

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`).
