# Export Telegram post comments and reactions

**Use case:** 

Export public Telegram posts with accurate comment counts, recent comment text and authors, reactions, and media.

## Input

```json
{
  "channels": [
    "WatcherGuru"
  ],
  "maxPosts": 10,
  "maxPagesPerChannel": 20,
  "includeMedia": true,
  "includeRawHtmlSnippet": false,
  "includeComments": true,
  "includeCommentCount": true,
  "maxCommentsPerPost": 10,
  "minComments": 1,
  "proxyConfiguration": {
    "useApifyProxy": false
  },
  "runTimeSecs": 270
}
```

## Output

```json
{
  "channelHandle": {
    "label": "Channel handle",
    "format": "string"
  },
  "channelTitle": {
    "label": "Channel title",
    "format": "string"
  },
  "subscriberCount": {
    "label": "Subscribers",
    "format": "integer"
  },
  "postId": {
    "label": "Post ID",
    "format": "string"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "string"
  },
  "date": {
    "label": "Date",
    "format": "string"
  },
  "text": {
    "label": "Post text",
    "format": "string"
  },
  "edited": {
    "label": "Edited",
    "format": "boolean"
  },
  "views": {
    "label": "Views",
    "format": "integer"
  },
  "replyCount": {
    "label": "Replies",
    "format": "integer"
  },
  "reactionCount": {
    "label": "Total reactions",
    "format": "integer"
  },
  "commentsScraped": {
    "label": "Comments scraped",
    "format": "integer"
  },
  "commentsStatus": {
    "label": "Comments status",
    "format": "string"
  },
  "comments": {
    "label": "Public comments",
    "format": "array"
  },
  "links": {
    "label": "Links",
    "format": "array"
  },
  "mediaUrls": {
    "label": "Media URLs",
    "format": "array"
  },
  "mediaTypes": {
    "label": "Media types",
    "format": "array"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Telegram Channel Posts Scraper – Comments & Media](https://apify.com/fetch_cat/telegram-channel-posts-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/fetch_cat/telegram-channel-posts-scraper) to learn more, explore other use cases, and run it yourself.