# Look Up App Store Metadata & Ratings

**Use case:** 

Get App Store app metadata: developer, genre, price, version, release dates and global rating count. Metadata-only runs have no review charges.

## Input

```json
{
  "apps": [
    "310633997",
    "com.spotify.client"
  ],
  "countries": [
    "us"
  ],
  "maxReviewsPerCountry": 500,
  "sortBy": "mostRecent",
  "minRating": 0,
  "maxRating": 5,
  "includeReviews": false,
  "includeMetadata": true,
  "concurrency": 8,
  "timeoutSecs": 30
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "appName": {
    "label": "App",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "rating": {
    "label": "Stars",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "body": {
    "label": "Review",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "appVersion": {
    "label": "Version",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [App Store Reviews API — All Storefronts, Per-Country Ratings](https://apify.com/fetchbase/app-store-intelligence) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fetchbase/app-store-intelligence) to learn more, explore other use cases, and run it yourself.