# Find Popular Free Apps With No Ads

**Use case:** 

Apps that are free, carry no 'Contains ads' badge and have at least a million installs. The install floor uses the lower bound Google publishes, and an app whose score Google does not publish is kept rather than dropped.

## Input

```json
{
  "mode": "charts",
  "appIds": [
    "com.spotify.music"
  ],
  "languages": [
    "en"
  ],
  "deviceTypes": [
    "phone"
  ],
  "reviewsSort": "newest",
  "maxReviewsPerApp": 50,
  "reviewsPerRequest": 1000,
  "searchTerms": [
    "habit tracker"
  ],
  "developers": [],
  "categories": [
    "APPLICATION"
  ],
  "countries": [
    "us"
  ],
  "maxAppsPerQuery": 100,
  "includeAppDetails": true,
  "includePermissions": false,
  "stars": [],
  "reviewTextContains": "",
  "appVersions": [],
  "withReplyOnly": false,
  "newerThanDays": 0,
  "postedBefore": "",
  "minScore": 0,
  "maxScore": 0,
  "minInstalls": 1000000,
  "minRatings": 0,
  "freeOnly": true,
  "paidOnly": false,
  "withoutAdsOnly": true,
  "titleContains": "",
  "onlyNew": false,
  "emitUnchanged": false,
  "maxItems": 200,
  "compact": false,
  "concurrency": 4,
  "timeoutSeconds": 30,
  "inputDatasetId": "",
  "appIdField": "app_id"
}
```

## Output

```json
{
  "app_id": {
    "label": "App ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "developer": {
    "label": "Developer",
    "format": "string"
  },
  "developer_email": {
    "label": "Developer email",
    "format": "string"
  },
  "developer_website": {
    "label": "Developer website",
    "format": "string"
  },
  "genre": {
    "label": "Genre",
    "format": "string"
  },
  "app_score": {
    "label": "App score",
    "format": "integer"
  },
  "ratings_total": {
    "label": "Ratings",
    "format": "integer"
  },
  "reviews_total": {
    "label": "Reviews",
    "format": "integer"
  },
  "installs_text": {
    "label": "Installs",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "integer"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "free": {
    "label": "Free",
    "format": "boolean"
  },
  "ad_supported": {
    "label": "Contains ads",
    "format": "boolean"
  },
  "content_rating": {
    "label": "Content rating",
    "format": "string"
  },
  "version": {
    "label": "Version",
    "format": "string"
  },
  "android_version": {
    "label": "Minimum Android",
    "format": "string"
  },
  "target_sdk": {
    "label": "Target SDK",
    "format": "integer"
  },
  "updated": {
    "label": "Updated",
    "format": "string"
  },
  "released": {
    "label": "Released",
    "format": "string"
  },
  "rank": {
    "label": "Rank",
    "format": "integer"
  },
  "category": {
    "label": "Category",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "app_url": {
    "label": "App URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Play Charts, App Reviews Scraper - Ratings, ASO](https://apify.com/snow_leo_data/google-play-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/snow_leo_data/google-play-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/snow_leo_data/google-play-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`).
