# Apple App Store App Search Scraper

**Use case:** 

Find photo editor apps in the Apple App Store and export app names, rankings, prices, ratings, and store URLs.

## Input

```json
{
  "mode": "search",
  "searchTerm": "photo editor",
  "appIds": [
    "389801252"
  ],
  "country": "us",
  "maxItems": 50,
  "includeReviews": false,
  "reviewSort": "mostRecent"
}
```

## Output

```json
{
  "appName": {
    "label": "App Name",
    "format": "text"
  },
  "developer": {
    "label": "Developer",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "Ratings",
    "format": "number"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "primaryGenre": {
    "label": "Genre",
    "format": "text"
  },
  "contentRating": {
    "label": "Age Rating",
    "format": "text"
  },
  "version": {
    "label": "Version",
    "format": "text"
  },
  "appUrl": {
    "label": "App URL",
    "format": "link"
  }
}
```

## About this Actor

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