# Top Podcasts Chart Scraper - Apple Podcasts Rankings

**Use case:** 

Scrape Apple Podcasts top charts by country and genre, with rank, title, and creator. Podcast market research, no API key.

## Input

```json
{
  "mode": "charts",
  "podcasts": [
    "Lex Fridman Podcast",
    "The Daily"
  ],
  "dataTypes": [
    "metadata",
    "episodes"
  ],
  "countries": [
    "us"
  ],
  "maxEpisodes": 50,
  "limit": 50
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "artist": {
    "label": "Creator",
    "format": "text"
  },
  "genre": {
    "label": "Genre",
    "format": "text"
  },
  "episodeCount": {
    "label": "# Episodes",
    "format": "number"
  },
  "rank": {
    "label": "Chart rank",
    "format": "number"
  },
  "published": {
    "label": "Published",
    "format": "text"
  },
  "duration": {
    "label": "Duration",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  }
}
```

## About this Actor

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