# Scrape a podcast's listener reviews and ratings

**Use case:** 

Collect Apple Podcasts reviews for any show: star rating, review title, full text, helpful votes and date, sorted newest first.

## Input

```json
{
  "mode": "reviews",
  "searchTerms": [
    "marketing"
  ],
  "podcastIds": [
    "1138869817"
  ],
  "genre": "ALL",
  "maxResultsPerQuery": 50,
  "fullDetails": true,
  "enrichFromRss": true,
  "includeEpisodes": false,
  "maxEpisodesPerShow": 10,
  "enrichHostContacts": false,
  "maxReviewsPerShow": 100,
  "reviewsSort": "mostrecent",
  "country": "us",
  "monitorMode": false,
  "monitorStoreName": "apple-podcasts-monitor",
  "maxConcurrency": 6,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "podcastId": {
    "label": "Podcast ID"
  },
  "userName": {
    "label": "User"
  },
  "score": {
    "label": "Rating"
  },
  "title": {
    "label": "Title"
  },
  "text": {
    "label": "Review"
  },
  "voteSum": {
    "label": "Helpful votes"
  },
  "updated": {
    "label": "Date"
  }
}
```

## About this Actor

This example demonstrates how to use [Apple Podcasts Scraper — Shows, Episodes, Reviews & Host Leads](https://apify.com/scrapesage/apple-podcasts-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/apple-podcasts-scraper) to learn more, explore other use cases, and run it yourself.