# Spotify App Store reviews, newest first

**Use case:** 

Pull the latest Spotify reviews from the US App Store with rating, version and date. Flat JSON, no API key, platform usage included.

## Input

```json
{
  "appIds": [
    "324684580"
  ],
  "countries": [
    "us"
  ],
  "sort": "mostRecent",
  "maxReviewsPerApp": 50
}
```

## Output

```json
{
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "title": {
    "label": "Review title",
    "format": "string"
  },
  "text": {
    "label": "Review text",
    "format": "string"
  },
  "userName": {
    "label": "Reviewer",
    "format": "string"
  },
  "date": {
    "label": "Date",
    "format": "string"
  },
  "appVersion": {
    "label": "App version",
    "format": "string"
  },
  "thumbsUp": {
    "label": "Helpful votes",
    "format": "number"
  },
  "country": {
    "label": "Storefront",
    "format": "string"
  }
}
```

## About this Actor

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