# Deep Google Play Top Grossing Scraper

**Use case:** 

Scrape up to 200 Top Grossing apps from Google Play US in one run, with ratings and developer details, beyond Apple's 100 cap.

## Input

```json
{
  "platforms": [
    "googleplay"
  ],
  "countries": [
    "us"
  ],
  "chartTypes": [
    "top-grossing"
  ],
  "categories": [],
  "resultsPerChart": 200,
  "perAppEnrichment": true,
  "emitMovers": false,
  "enableForecast": true,
  "historySnapshots": 30,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "snapshot_ts": {
    "label": "Snapshot",
    "format": "date"
  },
  "platform": {
    "label": "Platform",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "chart_type": {
    "label": "Chart",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "app_id": {
    "label": "App ID",
    "format": "text"
  },
  "app_name": {
    "label": "App",
    "format": "text"
  },
  "developer": {
    "label": "Developer",
    "format": "text"
  },
  "app_genre": {
    "label": "Genre",
    "format": "text"
  },
  "rank_change_1d": {
    "label": "Δ1d",
    "format": "number"
  },
  "rank_change_7d": {
    "label": "Δ7d",
    "format": "number"
  },
  "rank_change_30d": {
    "label": "Δ30d",
    "format": "number"
  },
  "days_on_chart": {
    "label": "Days on chart",
    "format": "number"
  },
  "peak_rank": {
    "label": "Peak",
    "format": "number"
  },
  "forecast_rank_1d": {
    "label": "Forecast 1d",
    "format": "number"
  },
  "forecast_rank_7d": {
    "label": "Forecast 7d",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [App Store + Google Play Rank Tracker](https://apify.com/constructive_calm/app-store-rank-tracker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/constructive_calm/app-store-rank-tracker) to learn more, explore other use cases, and run it yourself.