# Telegram Channel Profile Info Scraper

**Use case:** 

Resolve public Telegram channels and profiles into titles, descriptions, usernames, images, and visible preview stats.

## Input

```json
{
  "targets": [
    "@telegram",
    "https://t.me/durov",
    "BotFather"
  ],
  "startUrls": [
    {
      "url": "https://t.me/telegram"
    }
  ],
  "maxResults": 10,
  "includePreviewStats": true,
  "requestDelayMs": 350
}
```

## Output

```json
{
  "input": {
    "label": "Input",
    "format": "text"
  },
  "username": {
    "label": "Username",
    "format": "text"
  },
  "entityType": {
    "label": "Type",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "bio": {
    "label": "Bio",
    "format": "text"
  },
  "subscriberCount": {
    "label": "Subscribers",
    "format": "number"
  },
  "memberCount": {
    "label": "Members",
    "format": "number"
  },
  "monthlyUsers": {
    "label": "Monthly users",
    "format": "number"
  },
  "isVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "isScam": {
    "label": "Scam flag",
    "format": "boolean"
  },
  "isFake": {
    "label": "Fake flag",
    "format": "boolean"
  },
  "isBot": {
    "label": "Bot",
    "format": "boolean"
  },
  "canonicalUrl": {
    "label": "Canonical URL",
    "format": "link"
  },
  "avatarUrl": {
    "label": "Avatar",
    "format": "link"
  },
  "previewPostCount": {
    "label": "Preview posts",
    "format": "number"
  },
  "latestPostDate": {
    "label": "Latest post",
    "format": "date"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "errorMessage": {
    "label": "Error",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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