# Scrape Crypto Telegram Channel Posts & Stats

**Use case:** 

Snapshot public crypto Telegram channels — subscribers, recent posts, views, reactions and forwards — exported to JSON, CSV or Excel.

## Input

```json
{
  "mode": "channel_snapshot",
  "channels": [
    "bitcoin_news",
    "binance_announcements"
  ],
  "maxPostsPerChannel": 20,
  "searchKeywords": [],
  "includeReactions": true,
  "includeForwards": true,
  "maxItems": 100,
  "concurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": []
  }
}
```

## Output

```json
{
  "recordType": {
    "label": "Type",
    "format": "text"
  },
  "channelHandle": {
    "label": "Channel",
    "format": "text"
  },
  "subscriberCount": {
    "label": "Subscribers",
    "format": "number"
  },
  "postId": {
    "label": "Post ID",
    "format": "text"
  },
  "text": {
    "label": "Text",
    "format": "text"
  },
  "viewCount": {
    "label": "Views",
    "format": "number"
  },
  "reactionsTotal": {
    "label": "Reactions",
    "format": "number"
  },
  "forwardedFromHandle": {
    "label": "Forwarded from",
    "format": "text"
  },
  "fetchedAt": {
    "label": "Fetched",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Telegram Intelligence Pro - Channels, Posts, Monitor](https://apify.com/constructive_calm/telegram-intelligence-pro) with a specific input configuration. Visit the [Actor detail page](https://apify.com/constructive_calm/telegram-intelligence-pro) to learn more, explore other use cases, and run it yourself.