# Telegram channel profile extractor

**Use case:** 

Extract Telegram channel profile data including title, description, subscribers, avatar, verified status, and media counts.

## Input

```json
{
  "channels": [
    "telegram",
    "durov"
  ],
  "maxMessages": 1,
  "includeChannelInfo": true,
  "profileOnly": true
}
```

## Output

```json
{
  "username": {
    "label": "Username",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "subscriberCount": {
    "label": "Subscribers",
    "format": "text"
  },
  "avatarUrl": {
    "label": "Avatar",
    "format": "link"
  },
  "verified": {
    "label": "Verified",
    "format": "boolean"
  },
  "photoCount": {
    "label": "Photos",
    "format": "text"
  },
  "videoCount": {
    "label": "Videos",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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