# Scrape apps on the iOS App Store

**Use case:** 

Extract app listings from the Apple App Store by search. Structured app data with ratings and details. Pay per result.

## Input

```json
{
  "searchQuery": "podcast",
  "chart": "none",
  "appIds": [],
  "startUrls": [],
  "country": "us",
  "countries": [],
  "allCountries": false,
  "maxResults": 5,
  "priceFilter": "all",
  "genres": [],
  "releasedAfter": "",
  "releasedBefore": "",
  "gameCenterOnly": false,
  "includeDescription": true,
  "includeScreenshots": true,
  "fetchInAppPurchases": false,
  "fetchDetails": false,
  "fetchDeveloperApps": false,
  "developerAppsLimit": 50,
  "requestDelayMs": 1200,
  "maxRequestsPerMinute": 30
}
```

## Output

```json
{
  "name": {
    "label": "App",
    "format": "text"
  },
  "sellerName": {
    "label": "Developer",
    "format": "text"
  },
  "primaryGenre": {
    "label": "Genre",
    "format": "text"
  },
  "formattedPrice": {
    "label": "Price",
    "format": "text"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "averageUserRating": {
    "label": "Rating",
    "format": "number"
  },
  "country": {
    "label": "Store",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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