# Export Spotify technology podcast episodes

**Use case:** 

Use a public Spotify episode search URL to export episode titles, shows, publishers, publication dates, durations, and canonical links.

## Input

```json
{
  "queries": [
    "artificial intelligence"
  ],
  "searchUrls": [
    {
      "url": "https://open.spotify.com/search/technology/episodes"
    }
  ],
  "mode": "both",
  "maxItems": 10
}
```

## Output

```json
{
  "recordType": {
    "label": "Type",
    "format": "string"
  },
  "name": {
    "label": "Title",
    "format": "string"
  },
  "publisher": {
    "label": "Publisher",
    "format": "string"
  },
  "showName": {
    "label": "Show",
    "format": "string"
  },
  "releaseDate": {
    "label": "Published",
    "format": "string"
  },
  "durationSeconds": {
    "label": "Duration (seconds)",
    "format": "number"
  },
  "url": {
    "label": "Spotify URL",
    "format": "string"
  },
  "query": {
    "label": "Query",
    "format": "string"
  },
  "position": {
    "label": "Position",
    "format": "number"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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