# Apple App Store Scraper Task

**Use case:** 

Extract reviews and ratings for a specific app from the US Apple App Store. Get detailed user feedback, including author and date.

## Input

```json
{
  "app_ids": [
    "324684580"
  ],
  "countries": [
    "us"
  ],
  "max_apps_per_search": 10,
  "transport": "auto"
}
```

## Output

```json
{
  "review_id": {
    "label": "Review id"
  },
  "app_id": {
    "label": "App ID",
    "format": "text"
  },
  "author_name": {
    "label": "Author",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "text": {
    "label": "Review",
    "format": "text"
  },
  "review_date": {
    "label": "Date",
    "format": "date"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "scraped_at": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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