# Search Fitness Apps — Google Play Scraper

**Use case:** 

Search fitness and workout apps on Google Play. Get ratings, installs, developer, price, genre.

## Input

```json
{
  "mode": "search",
  "platform": "googlePlay",
  "searchQueries": [
    "fitness tracker",
    "workout planner"
  ],
  "maxAppsPerQuery": 15,
  "appIds": [
    "com.spotify.music"
  ],
  "maxReviewsPerApp": 100,
  "reviewSort": "newest",
  "chartType": "topFree",
  "chartCategory": "APPLICATION",
  "maxAppsPerChart": 100,
  "developerIds": [
    "Google LLC"
  ],
  "fetchFullDetails": true,
  "country": "us",
  "language": "en"
}
```

## Output

```json
{
  "platform": {
    "label": "Platform",
    "format": "text"
  },
  "appId": {
    "label": "App ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "developer": {
    "label": "Developer",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingsCount": {
    "label": "Ratings",
    "format": "number"
  },
  "installs": {
    "label": "Installs",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency"
  },
  "free": {
    "label": "Free",
    "format": "boolean"
  },
  "genre": {
    "label": "Genre",
    "format": "text"
  },
  "version": {
    "label": "Version",
    "format": "text"
  },
  "updated": {
    "label": "Updated",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "url": {
    "label": "Store URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [Google Play & App Store Scraper](https://apify.com/brilliant_gum/google-play-app-store-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/brilliant_gum/google-play-app-store-scraper) to learn more, explore other use cases, and run it yourself.