# Telegram Channel Scraper — No Bot Token Needed

**Use case:** 

Scrape public Telegram channel posts, views, dates, and media without a bot token or phone login. Export channel messages to JSON for analysis.

## Input

```json
{
  "channels": [
    "durov",
    "telegram"
  ],
  "maxItems": 10,
  "outputFormat": "full",
  "minViews": 0,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "channel": {
    "label": "Channel",
    "format": "string"
  },
  "post_id": {
    "label": "Post ID",
    "format": "integer"
  },
  "date": {
    "label": "Posted",
    "format": "string"
  },
  "views": {
    "label": "Views",
    "format": "integer"
  },
  "text": {
    "label": "Text",
    "format": "string"
  },
  "url": {
    "label": "Link",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Telegram Channel Scraper — No Bot Token, No Phone Login](https://apify.com/tugelbay/telegram-posts-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/tugelbay/telegram-posts-scraper) to learn more, explore other use cases, and run it yourself.