# Scrape Full Telegram Channel Post History

**Use case:** 

Bulk-export a public Telegram channel's archive with deep paginated history — full text, views, reactions and forwards.

## Input

```json
{
  "mode": "posts_history",
  "channels": [
    "bitcoin_news"
  ],
  "maxPostsPerChannel": 300,
  "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.