# Telegram Group Message Extractor

**Use case:** 

Scrape the latest messages from preview public Telegram channel. Get insights from real-time discussions without needing a Telegram account.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://t.me/durov"
    }
  ],
  "usernames": [],
  "maxMessages": 10,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "debugMode": false
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "integer"
  },
  "channel_username": {
    "label": "Channel",
    "format": "string"
  },
  "url": {
    "label": "Message URL",
    "format": "string"
  },
  "text": {
    "label": "Text",
    "format": "string"
  },
  "date": {
    "label": "Date",
    "format": "string"
  },
  "views": {
    "label": "Views",
    "format": "string"
  },
  "media_urls": {
    "label": "Media URLs",
    "format": "array"
  },
  "scraped_at": {
    "label": "Scraped At",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Telegram Group Scrapers](https://apify.com/mikolabs/telegram-group-scrapers) with a specific input configuration. Visit the [Actor detail page](https://apify.com/mikolabs/telegram-group-scrapers) to learn more, explore other use cases, and run it yourself.