# Discover New Fitness Apps & User Feedback in the US

**Use case:** 

Scrape data for new and trending fitness applications in the US, along with their initial user reviews, to identify market opportunities and validate product id

## Input

```json
{
  "searchTerms": [
    "fitness app",
    "workout tracker",
    "health coach"
  ],
  "country": "us",
  "language": "en",
  "maxResults": 50,
  "includeReviews": true,
  "reviewCount": 15
}
```

## Output

```json
{
  "appId": {
    "label": "App ID",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "developer": {
    "label": "Developer",
    "format": "string"
  },
  "score": {
    "label": "Rating",
    "format": "number"
  },
  "ratings": {
    "label": "Ratings",
    "format": "integer"
  },
  "installs": {
    "label": "Installs",
    "format": "string"
  },
  "free": {
    "label": "Free",
    "format": "boolean"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "genre": {
    "label": "Genre",
    "format": "string"
  },
  "contentRating": {
    "label": "Content Rating",
    "format": "string"
  }
}
```

## About this Actor

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