# Bulk download NPR transcripts dataset

**Use case:** 

Crawl multiple NPR programs at once and export every transcript with metadata and full text. CSV/JSON.

## Input

```json
{
  "programs": [
    "fresh-air",
    "morning-edition",
    "all-things-considered",
    "weekend-edition-saturday"
  ],
  "maxEpisodes": 5,
  "maxStories": 25,
  "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.