# Spotify US Top Podcasts chart scraper example

**Use case:** 

Export the current Spotify US Top Podcasts ranking with show names, publishers, rank movement, artwork, descriptions, and Spotify links.

## Input

```json
{
  "regions": [
    "us"
  ],
  "charts": [
    "top-podcasts"
  ],
  "maxItemsPerChart": 20,
  "includeRawData": false
}
```

## Output

```json
{
  "rank": {
    "label": "Rank",
    "format": "integer"
  },
  "showName": {
    "label": "Show name",
    "format": "string"
  },
  "publisher": {
    "label": "Publisher",
    "format": "string"
  },
  "chartRankMove": {
    "label": "Rank movement",
    "format": "string"
  },
  "region": {
    "label": "Region",
    "format": "string"
  },
  "chart": {
    "label": "Chart",
    "format": "string"
  },
  "showUrl": {
    "label": "Show URL",
    "format": "string"
  },
  "observedAt": {
    "label": "Observed at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Spotify Podcast Charts Scraper](https://apify.com/automation-lab/spotify-podcast-charts-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/spotify-podcast-charts-scraper) to learn more, explore other use cases, and run it yourself.