# Webhook feed of new NPR transcripts

**Use case:** 

POST every new NPR transcript to your endpoint with title, date, link and full text. Build a live feed.

## Input

```json
{
  "programs": [
    "all-things-considered"
  ],
  "maxEpisodes": 5,
  "maxStories": 10,
  "includeMissingTranscripts": false,
  "monitorMode": true,
  "alertOnNewTranscript": true,
  "webhookUrl": "https://example.com/hooks/npr",
  "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.