# Telegram channel search scraper example

**Use case:** 

Search Telegram channels by keyword and export public handles, titles, member counts, entity types, and canonical t.me profile links.

## Input

```json
{
  "queries": [
    "crypto news"
  ],
  "kind": "channel",
  "maxResultsPerQuery": 10,
  "maxConcurrency": 2
}
```

## Output

```json
{
  "query": {
    "label": "Query",
    "format": "text"
  },
  "requestedKind": {
    "label": "Requested type",
    "format": "text"
  },
  "username": {
    "label": "Username",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "kind": {
    "label": "Type",
    "format": "text"
  },
  "members": {
    "label": "Members",
    "format": "number"
  },
  "telegramUrl": {
    "label": "Telegram",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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