# Enrich Apple App Store app IDs with metadata

**Use case:** 

Look up public Apple App Store app IDs and export listing metadata such as ratings, prices, versions, genres, screenshots, URLs, and publisher fields.

## Input

```json
{
  "searchTerms": [
    "todo app",
    "fitness tracker"
  ],
  "appIds": [
    "324684580",
    "835599320",
    "544007664"
  ],
  "country": "US",
  "language": "en_us",
  "maxItems": 10,
  "includeDeveloperApps": false
}
```

## Output

```json
{
  "appName": {
    "label": "App name",
    "format": "string"
  },
  "appId": {
    "label": "App ID",
    "format": "integer"
  },
  "bundleId": {
    "label": "Bundle ID",
    "format": "string"
  },
  "developer": {
    "label": "Developer",
    "format": "string"
  },
  "primaryGenre": {
    "label": "Primary genre",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "averageRating": {
    "label": "Average rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "Rating count",
    "format": "integer"
  },
  "version": {
    "label": "Version",
    "format": "string"
  },
  "updatedDate": {
    "label": "Updated date",
    "format": "string"
  },
  "appStoreUrl": {
    "label": "App Store URL",
    "format": "string"
  },
  "artworkUrl": {
    "label": "Artwork URL",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "searchTerm": {
    "label": "Search term",
    "format": "string"
  }
}
```

## About this Actor

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