# Export the latest 200 posts from a public Telegram channel

**Use case:** 

Enter a public channel username and get its latest 200 posts with exact publish time, view count, reactions, forwards, media links and any email addresses in the text, plus the channel profile with subscriber count. No Telegram account or API key needed. Run it again later with incremental mode to fetch only new posts.

## Input

```json
{
  "channels": [
    "durov"
  ],
  "maxMessagesPerChannel": 200,
  "incremental": false,
  "includeChannelInfo": true,
  "includeMedia": true,
  "extractEmails": true,
  "verifyEmails": true,
  "maxRequestsPerChannel": 60
}
```

## Output

```json
{
  "channelUsername": {
    "label": "Channel"
  },
  "channelTitle": {
    "label": "Channel title"
  },
  "subscriberCount": {
    "label": "Subscribers"
  },
  "messageId": {
    "label": "Message ID"
  },
  "postedAt": {
    "label": "Posted"
  },
  "text": {
    "label": "Text"
  },
  "viewCount": {
    "label": "Views"
  },
  "viewCountIsApproximate": {
    "label": "Views approx."
  },
  "reactionCount": {
    "label": "Reactions"
  },
  "reactions": {
    "label": "Reaction detail"
  },
  "authorSignature": {
    "label": "Author"
  },
  "isEdited": {
    "label": "Edited"
  },
  "isForwarded": {
    "label": "Forwarded"
  },
  "forwardedFrom": {
    "label": "Forwarded from"
  },
  "isReply": {
    "label": "Reply"
  },
  "replyToMessageId": {
    "label": "Reply to"
  },
  "links": {
    "label": "Links"
  },
  "hashtags": {
    "label": "Hashtags"
  },
  "mentions": {
    "label": "Mentions"
  },
  "linkPreview": {
    "label": "Link preview"
  },
  "emails": {
    "label": "E-mails"
  },
  "hasPhoto": {
    "label": "Photo"
  },
  "hasVideo": {
    "label": "Video"
  },
  "hasVoice": {
    "label": "Voice"
  },
  "messageUrl": {
    "label": "Message URL"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/garnet_puppet/telegram-channel-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
