# Apple Podcasts chart scraper task

**Use case:** 

Scrape Apple Podcasts chart rankings by country and category for podcast market research and launch reports.

## Input

```json
{
  "mode": "charts",
  "podcastUrls": [
    {
      "url": "https://podcasts.apple.com/us/podcast/the-daily/id1200361736"
    }
  ],
  "podcastIds": [
    "1200361736"
  ],
  "countries": [
    "us"
  ],
  "chartGenre": "all",
  "chartLimit": 100,
  "maxItems": 100,
  "maxReviewsPerShow": 20,
  "maxEpisodesPerShow": 10,
  "sortReviewsBy": "mostRecent"
}
```

## Output

```json
{
  "itemType": {
    "label": "Item type"
  },
  "country": {
    "label": "Country"
  },
  "podcastId": {
    "label": "Podcast ID"
  },
  "podcastName": {
    "label": "Podcast name"
  },
  "podcastUrl": {
    "label": "Podcast URL",
    "format": "link"
  },
  "artistName": {
    "label": "Publisher"
  },
  "genre": {
    "label": "Genre"
  },
  "chartRank": {
    "label": "Chart rank"
  },
  "chartGenre": {
    "label": "Chart genre"
  },
  "reviewRating": {
    "label": "Review rating"
  },
  "reviewTitle": {
    "label": "Review title"
  },
  "reviewBody": {
    "label": "Review body"
  },
  "reviewAuthor": {
    "label": "Review author"
  },
  "reviewDate": {
    "label": "Review date"
  },
  "episodeTitle": {
    "label": "Episode title"
  },
  "episodePubDate": {
    "label": "Episode date"
  },
  "episodeUrl": {
    "label": "Episode URL",
    "format": "link"
  },
  "feedUrl": {
    "label": "RSS feed URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

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