# YouTube Gaming Live Chat Replay Extractor

**Use case:** 

Export complete chat replays from ended YouTube gaming streams. Retrieve messages, Super Chats, and membership events as structured data.

## Input

```json
{
  "videoUrls": [
    "https://www.youtube.com/watch?v=_USAoRuPdl4"
  ],
  "videoIds": [],
  "includeNormalMessages": true,
  "includeSuperChats": false,
  "includeMemberships": false,
  "maxMessagesPerVideo": 10000,
  "maxItems": 2000,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "authorName": {
    "label": "Author",
    "format": "text"
  },
  "message": {
    "label": "Message",
    "format": "text"
  },
  "superChatAmount": {
    "label": "Super Chat",
    "format": "text"
  },
  "timestampText": {
    "label": "Stream Time",
    "format": "text"
  },
  "videoOffsetTimeMsec": {
    "label": "Offset (ms)",
    "format": "text"
  },
  "videoId": {
    "label": "Video",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [YouTube Live Chat Replay Scraper - Ended Streams](https://apify.com/logiover/youtube-live-chat-replay-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/youtube-live-chat-replay-scraper) to learn more, explore other use cases, and run it yourself.