# Webhook on new Wistia video uploads

**Use case:** 

POST a JSON payload to your endpoint each time a new Wistia video is detected - pipe transcripts into any app.

## Input

```json
{
  "hashedIds": [
    "z1fxq584qr"
  ],
  "pageUrl": "https://example.com/videos",
  "transcriptFormats": [
    "segments"
  ],
  "maxVideos": 0,
  "monitorMode": true,
  "alertOnNewVideo": true,
  "webhookUrl": "https://api.example.com/hook",
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 5,
  "diagnose": false
}
```

## Output

```json
{
  "title": {
    "label": "Video",
    "format": "string"
  },
  "duration_sec": {
    "label": "Sec",
    "format": "number"
  },
  "caption_language": {
    "label": "Lang",
    "format": "string"
  },
  "segment_count": {
    "label": "Segments",
    "format": "integer"
  },
  "transcript": {
    "label": "Transcript",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Wistia Transcript Scraper — Captions to TXT, SRT & VTT](https://apify.com/scrapersdelight/wistia-transcript-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/wistia-transcript-scraper) to learn more, explore other use cases, and run it yourself.