# Scrape Weekend Edition Sunday transcripts

**Use case:** 

Download Weekend Edition Sunday transcripts: program, date, title, author, full text. CSV/JSON export.

## Input

```json
{
  "programs": [
    "weekend-edition-sunday"
  ],
  "maxEpisodes": 4,
  "maxStories": 15,
  "includeMissingTranscripts": false,
  "monitorMode": false,
  "alertOnNewTranscript": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 4,
  "diagnose": false
}
```

## Output

```json
{
  "program": {
    "label": "Program",
    "format": "string"
  },
  "episodeDate": {
    "label": "Date",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "paragraph_count": {
    "label": "Paragraphs",
    "format": "integer"
  },
  "hasTranscript": {
    "label": "Transcript?",
    "format": "boolean"
  },
  "text": {
    "label": "Transcript",
    "format": "string"
  },
  "transcriptUrl": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [NPR Transcript Scraper — Fresh Air, Morning Edition & ATC](https://apify.com/scrapersdelight/npr-transcript-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/npr-transcript-scraper) to learn more, explore other use cases, and run it yourself.