# Telegram Member Scraper (`agentx/telegram-member-scraper`) Actor

Pull the full member roster from any public Telegram group — up to 10,000,000 users per run, with optional Deep Search to surface hidden and historical members the standard API hides. Each member record includes username, names, premium flag, language, and last-seen signal.

- **URL**: https://apify.com/agentx/telegram-member-scraper.md
- **Developed by:** [AgentX](https://apify.com/agentx) (community)
- **Categories:** Social media, Lead generation, Agents
- **Stats:** 1,095 total users, 103 monthly users, 100.0% runs succeeded, 15 bookmarks
- **User rating**: 4.80 out of 5 stars

## Pricing

from $0.70 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Telegram Member Scraper - Telegram Member Intelligence API

**Telegram Member Scraper is a Telegram member intelligence API that extracts structured group/channel member profiles, activity signals, phone numbers, and trust-quality flags from any Telegram community in a single group-name-driven run — including hidden and historical members via deep search mode.** Telegram Member Scraper returns structured records per member, including user ID, username handle, display name, phone number, last\_seen status (online / recently / last\_week / last\_month / long\_ago), premium flag, verified flag, scam flag, fake flag, language code, entity type, profile photo URL, restriction reasons, and group join date. Coverage spans all Telegram public groups, supergroups, and channels globally with deep-search mode for hidden member extraction. Built for lead generation, audience intelligence, influencer discovery, community-pipeline enrichment, B2B Telegram-marketing list building, fraud and scam-account screening, and CRM ingestion. Up to 10,000,000 members per run, with pay-per-result pricing at $0.00077 per member and no monthly minimum.

[![Telegram](https://img.shields.io/badge/Telegram-26A5E4?style=for-the-badge\&color=26A5E4)](https://apify.com/agentx/telegram-member-scraper) [![Member Intelligence](https://img.shields.io/badge/Member_Intelligence-26A5E4?style=for-the-badge\&color=26A5E4)](https://apify.com/agentx/telegram-member-scraper) [![Audience Extraction](https://img.shields.io/badge/Audience_Extraction-26A5E4?style=for-the-badge\&color=26A5E4)](https://apify.com/agentx/telegram-member-scraper)

***

### Why Choose This API

#### Structured Telegram Member Data for B2B Audience Pipelines

**🔍 Deep Search — Hidden & Historical Members**
Enable `deep_search` to surface hidden and historical group members beyond the standard visible member list — enabling complete community sizing, full audience extraction, and comprehensive member datasets from large Telegram groups.

**📱 Last Seen Activity Signals**
The `last_seen` field returns activity status per member — `online`, ISO 8601 offline timestamp, `recently`, `last_week`, `last_month`, or `unknown` — enabling active user filtering, engagement tier segmentation, and dormant member identification.

**📞 Phone Number Extraction**
The `phone_number` field captures publicly visible phone numbers per member — enabling cross-platform identity matching, contact database enrichment, and phone-verified lead qualification for B2B outreach pipelines.

**🛡️ Trust & Quality Flags**
The `is_scam`, `is_fake`, `is_verified`, `is_deleted`, and `is_restricted` flags deliver per-member account quality signals — enabling audience quality scoring, bot/scam filtering, and community health assessment.

**⭐ Premium & Contact Intelligence**
The `is_premium` and `premium_contact` fields identify Telegram Premium users and those requiring Premium to contact — enabling high-value member segmentation and contact feasibility assessment for outreach pipelines.

***

### Quick Start Guide

#### How to Extract Telegram Group Members in 3 Steps

##### Step 1: Identify the Target Group

Enter the Telegram group URL, `@username`, or plain username (e.g., `https://t.me/DatascienceChats`).

##### Step 2: Configure Deep Search and Volume

[Open Actor Input](https://console.apify.com/actors/PSRx5Q0FWQwgLpfuL/input)

Enable `deep_search` for comprehensive extraction including hidden/historical members. Set `max_results` and click **Start**.

##### Step 3: Download Member Intelligence Data

Export results as JSON or CSV, or access programmatically via the Apify dataset API.

***

### Input Parameters

#### Configuration Fields

| Parameter      | Type    | Required | Description                                           | Example Values                                  |
| -------------- | ------- | -------- | ----------------------------------------------------- | ----------------------------------------------- |
| `telegram_url` | string  | ✅       | Telegram group URL, @username, or plain username      | `"https://t.me/DatascienceChats"`, `"@mygroup"` |
| `deep_search`  | boolean | ✅       | Enable to include hidden and historical members       | `false`, `true`                                 |
| `max_results`  | integer | ✅       | Maximum number of members to extract (100–10,000,000) | `500`, `5000`, `100000`                         |

#### Example Input Configuration

```json
{
  "telegram_url": "https://t.me/DatascienceChats",
  "deep_search": true,
  "max_results": 1000
}
```

***

### Output Data Schema

#### Complete Member Profile Record Structure

Each extracted Telegram member record contains the following fields:

[Open Actor Output](https://console.apify.com/actors/PSRx5Q0FWQwgLpfuL/input)

#### Core Member Fields

| Field             | Type    | Description                                                      |
| ----------------- | ------- | ---------------------------------------------------------------- |
| `processor`       | string  | Apify actor URL that processed this record                       |
| `processed_at`    | string  | ISO 8601 timestamp (UTC) when scraped                            |
| `user_id`         | integer | Telegram user unique identifier                                  |
| `first_name`      | string  | User's first name                                                |
| `last_name`       | string  | User's last name                                                 |
| `usernames`       | array   | All Telegram @username handles for the user                      |
| `phone_number`    | string  | Publicly visible phone number                                    |
| `entity_type`     | string  | `user` or `bot`                                                  |
| `is_deleted`      | boolean | Account deleted status                                           |
| `is_verified`     | boolean | Telegram verified status                                         |
| `is_premium`      | boolean | Telegram Premium subscriber status                               |
| `is_scam`         | boolean | Scam-flagged status                                              |
| `is_fake`         | boolean | Fake account flag                                                |
| `is_restricted`   | boolean | Account restriction flag                                         |
| `lang_code`       | string  | User language code                                               |
| `last_seen`       | string  | Activity status (online / timestamp / recently / last\_week etc.) |
| `stories_hidden`  | boolean | Stories visibility flag                                          |
| `premium_contact` | boolean | Requires Premium to contact flag                                 |

#### Example JSON Output

```json
{
  "processor": "https://apify.com/agentx/telegram-member-scraper",
  "processed_at": "2026-05-01T10:30:00.000Z",
  "user_id": 1234567890,
  "first_name": "John",
  "last_name": "Doe",
  "usernames": ["johndoe"],
  "phone_number": null,
  "entity_type": "user",
  "is_deleted": false,
  "is_verified": false,
  "is_premium": true,
  "is_scam": false,
  "is_fake": false,
  "lang_code": "en",
  "last_seen": "recently",
  "premium_contact": false
}
```

#### Export Formats

- **JSON** - Complete structured member profile data
- **CSV** - Spreadsheet-compatible for audience analytics
- **API Access** - Programmatic access via Apify Client SDK
- **Cloud Storage** - Automatic upload to Apify Dataset

***

### Integration Examples

#### Actor ID for Platform Integration

```text
PSRx5Q0FWQwgLpfuL
```

#### Ⓜ️ [Make.com Setup:](https://www.make.com/en/register?pc=marketingme)

1. Login to **[Make.com (Get 1000 Free Credits)](https://www.make.com/en/register?pc=marketingme)**
2. Add module **"Run an Actor"**
3. Turn **'Map'** on - right side of the 'Actor\*'
4. Paste **Actor ID** - from above
5. Click the **'⟳ Refresh'** - left side of Map
6. **Input JSON\*** - Modify the parameters as needed
7. Set **"Run synchronously"** to **YES**
8. Add module **"Get Dataset Items"** - receive the result
9. In **Dataset ID\*** select **defaultDatasetId**

#### 🎱 [N8N.io Setup:](https://n8n.io/)

1. Add **'Run an Actor and get dataset'** - from the apify node
2. **Actor** → **By ID** → **Paste Actor ID** - from above
3. **Input JSON** - Modify the parameters as needed

#### Python Integration Example

```python
from apify_client import ApifyClient

client = ApifyClient('YOUR_API_TOKEN')

run_input = {
    "telegram_url": "https://t.me/DatascienceChats",
    "deep_search": True,
    "max_results": 1000
}

run = client.actor("PSRx5Q0FWQwgLpfuL").call(run_input=run_input)

for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)
```

#### JavaScript/Node.js Integration

```javascript
import { ApifyClient } from "apify-client";

const client = new ApifyClient({ token: "YOUR_API_TOKEN" });

const input = {
  telegram_url: "@techgroup",
  deep_search: false,
  max_results: 500,
};

const run = await client.actor("PSRx5Q0FWQwgLpfuL").call(input);
const { items } = await client.dataset(run.defaultDatasetId).listItems();

items.forEach((item) => console.log(item));
```

#### JSON-LD Metadata

```json
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "SoftwareApplication",
      "@id": "https://apify.com/agentx/telegram-member-scraper#software",
      "name": "Telegram Member Scraper",
      "description": "Telegram Member Scraper is a Telegram member intelligence API extracting structured group member profiles with activity signals, phone numbers, premium status, scam flags, and deep search mode for hidden/historical members — for lead generation and audience intelligence pipelines.",
      "applicationCategory": "BusinessApplication",
      "applicationSubCategory": "Lead Generation API",
      "operatingSystem": "Web, Cloud",
      "url": "https://apify.com/agentx/telegram-member-scraper",
      "softwareVersion": "1.0.0",
      "datePublished": "2024-08-01",
      "dateModified": "2026-05-01",
      "featureList": [
        "User ID, username, display name, phone",
        "Last_seen activity (online/recently/last_week/last_month)",
        "Premium, verified, scam, fake flags",
        "Deep search mode for hidden/historical members",
        "Language code and profile photo URL",
        "Up to 10,000,000 members per run",
        "Per-member pay-per-result at $0.00077",
        "Native integrations with Make.com, n8n, LangChain, and CrewAI"
      ],
      "offers": {
        "@type": "Offer",
        "price": "0.00077",
        "priceCurrency": "USD",
        "availability": "https://schema.org/InStock"
      },
      "author": { "@id": "https://apify.com/agentx#person" },
      "publisher": { "@id": "https://apify.com#organization" }
    },
    {
      "@type": "Person",
      "@id": "https://apify.com/agentx#person",
      "name": "AgentX",
      "url": "https://apify.com/agentx",
      "sameAs": [
        "https://apify.com/agentx",
        "https://t.me/AiAgentApi",
        "https://t.me/Apify_Actor"
      ],
      "knowsAbout": [
        "web scraping",
        "Telegram",
        "member intelligence",
        "audience extraction",
        "lead generation"
      ]
    },
    {
      "@type": "BreadcrumbList",
      "itemListElement": [
        {
          "@type": "ListItem",
          "position": 1,
          "name": "Apify",
          "item": "https://apify.com"
        },
        {
          "@type": "ListItem",
          "position": 2,
          "name": "AgentX",
          "item": "https://apify.com/agentx"
        },
        {
          "@type": "ListItem",
          "position": 3,
          "name": "Telegram Member Scraper",
          "item": "https://apify.com/agentx/telegram-member-scraper"
        }
      ]
    }
  ]
}
```

***

### Pricing & Cost Calculator

#### Pay-Per-Result Pricing

| Event               | Rate                |
| ------------------- | ------------------- |
| Actor Start         | $0.01 per GB memory |
| Result (per member) | $0.00077 (BRONZE)   |

#### Cost Calculator Examples

| Members        | Estimated Cost |
| -------------- | -------------- |
| 100 members    | ~$0.09         |
| 500 members    | ~$0.40         |
| 1,000 members  | ~$0.78         |
| 5,000 members  | ~$3.88         |
| 10,000 members | ~$7.71         |
| 50,000 members | ~$38.51        |

***

### Use Cases & Applications

#### Lead Generation & Audience Intelligence

**Telegram Community Audience Profiling**
Extract member lists from topic-relevant Telegram groups — building audience datasets with language segmentation, activity tiers, and premium user identification for lead qualification pipelines.

**Phone-Verified Lead Extraction**
The `phone_number` field enables phone-verified lead collection from community members who have exposed their contact details — enabling cross-platform enrichment and direct outreach pipelines.

**Activity-Based Audience Segmentation**
Filter members by `last_seen` values — separating active users (`online`, `recently`) from dormant members (`last_month`, `unknown`) for targeted audience segmentation and outreach prioritization.

#### Integration Pipeline with Telegram Tools

**Member List → Group Inviter Pipeline**
Extract member usernames from source communities, then pass into [Telegram Group Inviter](https://apify.com/agentx/telegram-group-inviter) for structured invitation workflows — enabling community migration and targeted member recruitment pipelines.

**Member List → Profile Enrichment Pipeline**
Pass extracted `usernames` into [Telegram Info Scraper](https://apify.com/agentx/telegram-info-scraper) for deep entity profiling — building comprehensive member intelligence with 30+ entity fields per profile.

***

### FAQ

#### What does `deep_search` enable?

Deep search activates extended extraction to surface hidden members and historical group participants beyond the standard visible member list. Disable for faster shallow extraction of currently visible members only.

#### Can I extract members from a private group?

This actor requires the target group to be accessible. For enhanced private group extraction capabilities, see [Telegram Private Group Scraper](https://apify.com/agentx/telegram-private-group-scraper).

#### What is `premium_contact`?

This flag indicates the member has enabled a Telegram setting that requires the contacting party to also have Telegram Premium. Useful for filtering contactable members in outreach pipelines.

#### How do I combine this with Telegram Group Inviter?

Extract member usernames here, then pass them as the `usernames` array input to [Telegram Group Inviter](https://apify.com/agentx/telegram-group-inviter) — enabling structured, audited group migration or community onboarding pipelines.

***

### SEO Keywords & Search Terms

#### Primary Keywords

Telegram member scraper API, Telegram group member extractor, Telegram audience extraction API, Telegram member intelligence, Telegram group member data API, Telegram lead generation API, Telegram audience profiling, Telegram member list API, Telegram community member data, Telegram group audience extractor

#### Long-Tail Keywords

how to extract Telegram group members programmatically, Telegram member phone number extractor, Telegram group hidden member scraper, Telegram deep member extraction API, Telegram active member filter API, Telegram lead generation from groups, Telegram member last seen data API, Telegram audience segmentation pipeline, Telegram community member list extractor, Telegram member intelligence pipeline

#### Industry Terms

Telegram member intelligence API, audience extraction pipeline, deep member search, activity signal segmentation, phone-verified lead collection, community audience profiling, premium member identification, scam-filtered audience dataset, Telegram lead generation, community intelligence pipeline

***

### Trust & Certifications

- ✅ **Production-Grade Infrastructure** — runs on the Apify cloud platform with managed proxy rotation and automatic retries
- ✅ **GDPR & CCPA-Region Aligned** — extracts only publicly available Telegram member profiles; no personal contact data retained beyond the run session
- ✅ **Pay-Per-Result Billing** — transparent $0.00077 per member with no monthly minimum or seat fees
- ✅ **Continuously Maintained** — schema and selector updates released as Telegram evolves

***

### Legal & Compliance

#### Data Rights & Usage

All data extracted by this actor originates from publicly accessible Telegram group member lists. Users are responsible for ensuring their use of extracted data complies with applicable laws, data protection regulations, and Telegram's terms of service.

#### Privacy Compliance

- **GDPR**: Compliant with EU GDPR for data processing workflows.
- **CCPA**: Compliant with California Consumer Privacy Act requirements.

#### Platform Terms of Service

Users must review and comply with Telegram's terms of service when using extracted data.

#### Enterprise Support

For enterprise licensing, custom integrations, or compliance inquiries:

- **Telegram**: [@AiAgentApi](https://t.me/AiAgentApi)

***

### Related Tools

#### Jobs & Hiring

- **[All Jobs Scraper](https://apify.com/agentx/all-jobs-scraper)** - Multi-Platform Job Listings Intelligence API
- **[Glassdoor Hiring Scraper](https://apify.com/agentx/glassdoor-hiring-scraper)** - Glassdoor Job Listings Intelligence API
- **[Glints Employer Data Extractor](https://apify.com/agentx/glints-employer-data-extractor)** - Glints Employer Intelligence API
- **[Glints Jobs Data Extractor](https://apify.com/agentx/glints-jobs-data-extractor)** - Glints Job Listings Intelligence API
- **[Indeed Hiring Scraper](https://apify.com/agentx/indeed-hiring-scraper)** - Indeed Job Listings Intelligence API
- **[JobStreet Employer Data Extractor](https://apify.com/agentx/jobstreet-employer-data-extractor)** - JobStreet Employer Intelligence API
- **[JobStreet Jobs Data Extractor](https://apify.com/agentx/jobstreet-jobs-data-extractor)** - JobStreet Job Listings Intelligence API
- **[LinkedIn Hiring Scraper](https://apify.com/agentx/linkedin-hiring-scraper)** - LinkedIn Job Listings Intelligence API
- **[StepStone Employer Data Extractor](https://apify.com/agentx/stepstone-employer-data-extractor)** - StepStone Employer Intelligence API
- **[StepStone Jobs Data Extractor](https://apify.com/agentx/stepstone-jobs-data-extractor)** - StepStone Job Listings Intelligence API

#### Social Media

- **[Instagram Creator Scraper](https://apify.com/agentx/instagram-creator-scraper)** - Instagram Creator Intelligence API
- **[Instagram Post Reel Scraper](https://apify.com/agentx/instagram-post-reel-scraper)** - Instagram Post & Reel Intelligence API
- **[Instagram Trending Scraper](https://apify.com/agentx/instagram-trending-scraper)** - Instagram Trending Content Intelligence API
- **[LinkedIn Company Scraper](https://apify.com/agentx/linkedin-company-scraper)** - LinkedIn Company Intelligence API
- **[LinkedIn Profile Scraper](https://apify.com/agentx/linkedin-profile-scraper)** - LinkedIn Profile Intelligence API
- **[Medium Author Data Extractor](https://apify.com/agentx/medium-author-data-extractor)** - Medium Author Intelligence API
- **[Medium Content Data Extractor](https://apify.com/agentx/medium-content-data-extractor)** - Medium Content Intelligence API
- **[Reddit Author Scraper](https://apify.com/agentx/reddit-author-scraper)** - Reddit Author Intelligence API
- **[Reddit Viral Scraper](https://apify.com/agentx/reddit-viral-scraper)** - Reddit Viral Content Intelligence API
- **[SubReddit Info Scraper](https://apify.com/agentx/subreddit-info-scraper)** - Subreddit Intelligence API
- **[Subreddit Member Scraper](https://apify.com/agentx/subreddit-member-scraper)** - Subreddit Member Intelligence API
- **[SubReddit Post Scraper](https://apify.com/agentx/subreddit-post-scraper)** - Subreddit Post Intelligence API
- **[Telegram Chat Scraper](https://apify.com/agentx/telegram-chat-scraper)** - Telegram Chat Intelligence API
- **[Telegram Group Inviter](https://apify.com/agentx/telegram-group-inviter)** - Telegram Group Invitation API
- **[Telegram Info Scraper](https://apify.com/agentx/telegram-info-scraper)** - Telegram Channel Intelligence API
- **[Telegram Member Scraper](https://apify.com/agentx/telegram-member-scraper)** - Telegram Member Intelligence API
- **[Telegram Private Group Scraper](https://apify.com/agentx/telegram-private-group-scraper)** - Telegram Private Group Intelligence API
- **[TikTok Creator Scraper](https://apify.com/agentx/tiktok-creator-scraper)** - TikTok Creator Intelligence API
- **[Twitter Community Scraper](https://apify.com/agentx/twitter-community-scraper)** - Twitter Community Intelligence API
- **[Twitter Info Scraper](https://apify.com/agentx/twitter-info-scraper)** - Twitter Account Intelligence API
- **[YouTube Market Intelligence](https://apify.com/agentx/youtube-market-intelligence)** - YouTube Channel Intelligence API

#### Video & Transcript

- **[All Video Scraper](https://apify.com/agentx/all-video-scraper)** - Multi-Platform Video Intelligence API
- **[Live Stream Transcript](https://apify.com/agentx/live-stream-transcript)** - Live Stream Transcript Intelligence API
- **[TikTok Live Downloader](https://apify.com/agentx/tiktok-live-downloader)** - TikTok Live Stream Download API
- **[TikTok Transcript](https://apify.com/agentx/tiktok-transcript)** - TikTok Video Transcript Intelligence API
- **[Video Caption Scraper](https://apify.com/agentx/video-caption-scraper)** - Multi-Platform Video Caption Extraction API
- **[Video to Social Post](https://apify.com/agentx/video-to-social-post)** - Video to Social Post Generation API
- **[Video Transcript](https://apify.com/agentx/video-transcript)** - Multi-Platform Video Transcript Intelligence API
- **[YouTube Transcript](https://apify.com/agentx/youtube-transcript)** - YouTube Video Transcript Intelligence API

#### E-Commerce & Retail

- **[Amazon Product Data Extractor](https://apify.com/agentx/amazon-product-data-extractor)** - Amazon Product Intelligence API
- **[Amazon Storefront Data Extractor](https://apify.com/agentx/amazon-storefront-data-extractor)** - Amazon Storefront Intelligence API
- **[Argos Retail Data Extractor](https://apify.com/agentx/argos-retail-data-extractor)** - Argos Product Intelligence API
- **[ASOS Product Catalog Extractor](https://apify.com/agentx/asos-product-catalog-extractor)** - ASOS Product Catalog Intelligence API
- **[eBay Marketplace Data Extractor](https://apify.com/agentx/ebay-marketplace-data-extractor)** - eBay Marketplace Intelligence API
- **[eBay Seller Leads API](https://apify.com/agentx/ebay-seller-leads-api)** - eBay Seller Lead Intelligence API
- **[Flipkart Product Data Extractor](https://apify.com/agentx/flipkart-product-data-extractor)** - Flipkart Product Intelligence API
- **[John Lewis Retail Data Extractor](https://apify.com/agentx/john-lewis-retail-data-extractor)** - John Lewis Product Intelligence API
- **[Lidl Offers Data Extractor](https://apify.com/agentx/lidl-offers-data-extractor)** - Lidl Offers Intelligence API
- **[Magalu Product Data Extractor](https://apify.com/agentx/magalu-product-data-extractor)** - Magalu Product Intelligence API
- **[MediaMarkt Product Data Extractor](https://apify.com/agentx/mediamarkt-product-data-extractor)** - MediaMarkt Product Intelligence API
- **[Mercado Livre Marketplace Data Extractor](https://apify.com/agentx/mercado-livre-marketplace-data-extractor)** - Mercado Livre Marketplace Intelligence API
- **[Nykaa Product Data Extractor](https://apify.com/agentx/nykaa-product-data-extractor)** - Nykaa Product Intelligence API
- **[OTTO Product Data Extractor](https://apify.com/agentx/otto-product-data-extractor)** - OTTO Product Intelligence API
- **[Target Product Data Extractor](https://apify.com/agentx/target-product-data-extractor)** - Target Product Intelligence API
- **[Walmart Product Data Extractor](https://apify.com/agentx/walmart-product-data-extractor)** - Walmart Product Intelligence API

#### Classifieds & Automotive

- **[AutoTrader Dealer Leads API](https://apify.com/agentx/autotrader-dealer-leads-api)** - AutoTrader Dealer Lead Intelligence API
- **[AutoTrader Vehicle Listings API](https://apify.com/agentx/autotrader-vehicle-listings-api)** - AutoTrader Vehicle Listings Intelligence API
- **[Cars.com Dealer Leads API](https://apify.com/agentx/cars-com-dealer-leads-api)** - Cars.com Dealer Lead Intelligence API
- **[Cars.com Vehicle Listings API](https://apify.com/agentx/cars-com-vehicle-listings-api)** - Cars.com Vehicle Listings Intelligence API
- **[Kleinanzeigen Classifieds Data Extractor](https://apify.com/agentx/kleinanzeigen-classifieds-data-extractor)** - Kleinanzeigen Classifieds Intelligence API
- **[Kleinanzeigen Seller Leads API](https://apify.com/agentx/kleinanzeigen-seller-leads-api)** - Kleinanzeigen Seller Lead Intelligence API
- **[OLX Classifieds Data Extractor](https://apify.com/agentx/olx-classifieds-data-extractor)** - OLX Classifieds Intelligence API
- **[OLX Seller Leads API](https://apify.com/agentx/olx-seller-leads-api)** - OLX Seller Lead Intelligence API
- **[Webmotors Vehicle Listings API](https://apify.com/agentx/webmotors-vehicle-listings-api)** - Webmotors Vehicle Listings Intelligence API

#### Real Estate

- **[MagicBricks Builder Leads API](https://apify.com/agentx/magicbricks-builder-leads-api)** - MagicBricks Builder Lead Intelligence API
- **[MagicBricks Property Data Extractor](https://apify.com/agentx/magicbricks-property-data-extractor)** - MagicBricks Real Estate Data API
- **[Realtor Property Scraper](https://apify.com/agentx/realtor-property-scraper)** - Realtor.com Property Listings Intelligence API
- **[Zillow For Sale Scraper](https://apify.com/agentx/zillow-for-sale-scraper)** - Zillow Property Listings Intelligence API

#### Business Intelligence & Reviews

- **[BBB Business Data Extractor](https://apify.com/agentx/bbb-business-data-extractor)** - BBB Business Intelligence API
- **[BBB Reputation Data Extractor](https://apify.com/agentx/bbb-reputation-data-extractor)** - BBB Reputation Intelligence API
- **[Google Maps Store Scraper](https://apify.com/agentx/google-maps-store-scraper)** - Google Maps Business Intelligence API
- **[Reclame Aqui Company Data Extractor](https://apify.com/agentx/reclame-aqui-company-data-extractor)** - Reclame Aqui Company Intelligence API
- **[TradeIndia Product Data Extractor](https://apify.com/agentx/tradeindia-product-data-extractor)** - TradeIndia Product Intelligence API
- **[TradeIndia Supplier Leads API](https://apify.com/agentx/tradeindia-supplier-leads-api)** - TradeIndia Supplier Lead Intelligence API
- **[Zomato Menu Data Extractor](https://apify.com/agentx/zomato-menu-data-extractor)** - Zomato Restaurant Menu Intelligence API
- **[Zomato Restaurant Data Extractor](https://apify.com/agentx/zomato-restaurant-data-extractor)** - Zomato Restaurant Search Intelligence API

#### Other

- **[Global Weather Scraper](https://apify.com/agentx/global-weather-scraper)** - Global Weather Intelligence API

***

### Support & Community

- **👥 Community**: [@Apify\_Actor](https://t.me/Apify_Actor)
- **👤 Contact Team**: [@AiAgentApi](https://t.me/AiAgentApi)

***

**Last Updated:** May 01, 2026

# Actor input Schema

## `deep_search` (type: `boolean`):

Enable for hidden members + historical members

## `max_results` (type: `integer`):

How many members to find in the group

## `telegram_url` (type: `string`):

Telegram Group link (supports t.me URL, @username, or username)

## Actor input object example

```json
{
  "max_results": 100,
  "telegram_url": "https://t.me/DatascienceChats"
}
```

# Actor output Schema

## `results` (type: `string`):

All Telegram group members with profile details, usernames, and activity status

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "deep_search": false,
    "max_results": 100,
    "telegram_url": "https://t.me/DatascienceChats"
};

// Run the Actor and wait for it to finish
const run = await client.actor("agentx/telegram-member-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "deep_search": False,
    "max_results": 100,
    "telegram_url": "https://t.me/DatascienceChats",
}

# Run the Actor and wait for it to finish
run = client.actor("agentx/telegram-member-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "deep_search": false,
  "max_results": 100,
  "telegram_url": "https://t.me/DatascienceChats"
}' |
apify call agentx/telegram-member-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=agentx/telegram-member-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/PSRx5Q0FWQwgLpfuL/builds/Nywm0atSJzje9f4Re/openapi.json
