# App ratings, star histogram and metadata for a list of apps

**Use case:** 

Ready-to-run example: one profile row per app with rating, histogram, installs, version, release notes and developer contact details, no review text.

## Input

```json
{
  "apps": [
    "https://apps.apple.com/us/app/whatsapp-messenger/id310633997",
    "https://play.google.com/store/apps/details?id=com.whatsapp",
    "https://apps.apple.com/us/app/telegram-messenger/id686449807",
    "https://play.google.com/store/apps/details?id=org.telegram.messenger"
  ],
  "stores": "both",
  "maxReviewsPerApp": 200,
  "maxReviews": 0,
  "countries": [
    "us",
    "gb"
  ],
  "languages": [
    "en"
  ],
  "appStoreSource": "both",
  "includeAppProfile": true,
  "appProfilesOnly": true,
  "ratings": [],
  "sort": "newest",
  "appVersions": [],
  "onlyWithReplies": false,
  "onlyNewSinceLastRun": false,
  "stateLabel": "my-watchlist",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "store": {
    "label": "Store",
    "format": "text"
  },
  "appName": {
    "label": "App",
    "format": "text"
  },
  "appId": {
    "label": "App id",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "Ratings",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "ratingOne": {
    "label": "1 star",
    "format": "number"
  },
  "ratingTwo": {
    "label": "2 star",
    "format": "number"
  },
  "ratingThree": {
    "label": "3 star",
    "format": "number"
  },
  "ratingFour": {
    "label": "4 star",
    "format": "number"
  },
  "ratingFive": {
    "label": "5 star",
    "format": "number"
  },
  "installs": {
    "label": "Installs",
    "format": "text"
  },
  "minInstalls": {
    "label": "Min installs",
    "format": "number"
  },
  "developerName": {
    "label": "Developer",
    "format": "text"
  },
  "developerEmail": {
    "label": "Developer email",
    "format": "text"
  },
  "developerWebsite": {
    "label": "Developer website",
    "format": "link"
  },
  "developerAddress": {
    "label": "Developer address",
    "format": "text"
  },
  "developerPhone": {
    "label": "Developer phone",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "isFree": {
    "label": "Free",
    "format": "boolean"
  },
  "version": {
    "label": "Version",
    "format": "text"
  },
  "releaseNotes": {
    "label": "Release notes",
    "format": "text"
  },
  "updatedDate": {
    "label": "Updated",
    "format": "date"
  },
  "releasedDate": {
    "label": "Released",
    "format": "date"
  },
  "contentRating": {
    "label": "Content rating",
    "format": "text"
  },
  "minimumOsVersion": {
    "label": "Min OS",
    "format": "text"
  },
  "fileSizeBytes": {
    "label": "Size (bytes)",
    "format": "number"
  },
  "hasInAppPurchases": {
    "label": "In-app purchases",
    "format": "boolean"
  },
  "adSupported": {
    "label": "Ads",
    "format": "boolean"
  },
  "bundleId": {
    "label": "Bundle / package",
    "format": "text"
  },
  "country": {
    "label": "Storefront",
    "format": "text"
  },
  "appUrl": {
    "label": "Store page",
    "format": "link"
  },
  "iconUrl": {
    "label": "Icon",
    "format": "image"
  },
  "scrapedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "type": {
    "label": "Row type",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [App Store & Google Play Ratings & Metadata Scraper - App Data](https://apify.com/vonsensey/app-store-google-play-ratings-metadata-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/vonsensey/app-store-google-play-ratings-metadata-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
This Task's input is already configured above — use it as-is rather than inventing a new one.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/vonsensey/app-store-google-play-ratings-metadata-scraper.md

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).
