# Export Telegram channel posts with media

**Use case:** 

Scrape public Telegram posts and include media references for content monitoring and archival workflows.

## Input

```json
{
  "channels": [
    "telegram"
  ],
  "maxPosts": 20,
  "includeMedia": true,
  "includeRawHtmlSnippet": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "channelHandle": {
    "label": "Channel",
    "format": "text"
  },
  "channelTitle": {
    "label": "Channel title",
    "format": "text"
  },
  "postId": {
    "label": "Post ID",
    "format": "text"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "link"
  },
  "date": {
    "label": "Date",
    "format": "date"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "views": {
    "label": "Views",
    "format": "number"
  },
  "forwards": {
    "label": "Forwards",
    "format": "number"
  },
  "replyCount": {
    "label": "Replies",
    "format": "number"
  },
  "links": {
    "label": "Links",
    "format": "text"
  },
  "mediaUrls": {
    "label": "Media URLs",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Telegram Channel Posts Scraper](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.