# Apple App Store App Details Extractor

**Use case:** 

Extract App Store metadata for a known iOS app, including title, developer, rating, pricing, screenshots, and description.

## Input

```json
{
  "mode": "details",
  "searchTerm": "photo editor",
  "appIds": [
    "389801252"
  ],
  "country": "us",
  "maxItems": 1,
  "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.