# Scrape Telegram channel messages in bulk

**Use case:** 

Export public Telegram channel messages with date, text, views, media flags and links. No Telegram account or API key required.

## Input

```json
{
  "channels": [
    "telegram"
  ],
  "maxMessagesPerChannel": 50,
  "includeChannelInfo": true,
  "concurrency": 4,
  "delayBetweenRequests": 1,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "channel": {
    "label": "Channel",
    "format": "text"
  },
  "messageId": {
    "label": "Msg ID",
    "format": "number"
  },
  "datetime": {
    "label": "Date",
    "format": "text"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "views": {
    "label": "Views",
    "format": "text"
  },
  "hasPhoto": {
    "label": "Photo",
    "format": "boolean"
  },
  "hasVideo": {
    "label": "Video",
    "format": "boolean"
  },
  "hasDocument": {
    "label": "Doc",
    "format": "boolean"
  },
  "forwardedFrom": {
    "label": "Forwarded From",
    "format": "text"
  },
  "url": {
    "label": "Link",
    "format": "link"
  }
}
```

## About this Actor

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