# Scrape Public Telegram Channels — No Login or API

**Use case:** 

Pull messages from any public Telegram channel as JSON: text, views, reactions, forwards and media links. No account, no bot token, no phone number.

## Input

```json
{
  "channels": [
    "durov"
  ],
  "maxMessagesPerChannel": 100,
  "includeChannelInfo": true,
  "skipMediaOnlyMessages": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type",
    "format": "text"
  },
  "channel": {
    "label": "Channel",
    "format": "text"
  },
  "message_id": {
    "label": "Msg ID",
    "format": "number"
  },
  "datetime": {
    "label": "Date",
    "format": "text"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "views": {
    "label": "Views",
    "format": "number"
  },
  "total_reactions": {
    "label": "Reactions",
    "format": "number"
  },
  "media_type": {
    "label": "Media",
    "format": "text"
  },
  "url": {
    "label": "Link",
    "format": "link"
  }
}
```

## About this Actor

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