# Scrape app metadata from Apple & Google Play

**Use case:** 

Get full app metadata across the Apple App Store and Google Play — title, developer, category, rating, rating count, price, and version.

## Input

```json
{
  "mode": "app-details",
  "query": [
    "https://apps.apple.com/us/app/spotify-music-and-podcasts/id324684580",
    "com.spotify.music"
  ],
  "stores": [
    "apple",
    "google-play"
  ],
  "countries": [
    "us"
  ],
  "maxResults": 100,
  "aiEnrichment": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": []
  },
  "debug": false
}
```

## Output

```json
{
  "recordType": {
    "label": "Record type",
    "format": "string"
  },
  "store": {
    "label": "Store",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "keyword": {
    "label": "Keyword",
    "format": "string"
  },
  "difficultyScore": {
    "label": "Difficulty",
    "format": "number"
  },
  "popularityScore": {
    "label": "Popularity (est.)",
    "format": "number"
  },
  "rankPosition": {
    "label": "Rank",
    "format": "integer"
  },
  "title": {
    "label": "App title",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "Ratings",
    "format": "integer"
  }
}
```

## About this Actor

This example demonstrates how to use [App Store Intelligence Pro - ASO & Rank Tracker](https://apify.com/webdatalabs/app-store-intelligence-pro) with a specific input configuration. Visit the [Actor detail page](https://apify.com/webdatalabs/app-store-intelligence-pro) to learn more, explore other use cases, and run it yourself.