VOOZH about

URL: https://apify.com/scrapesage/telegram-scraper

โ‡ฑ Telegram Scraper - Channels, Messages, Media & Search ยท Apify


๐Ÿ‘ Telegram Scraper - Channels, Messages, Media & Search avatar

Telegram Scraper - Channels, Messages, Media & Search

Pricing

from $2.00 / 1,000 message scrapeds

Go to Apify Store

Telegram Scraper - Channels, Messages, Media & Search

Scrape public Telegram channels: full message history, media, reactions, polls, forwards, replies, link previews, channel stats, and in-channel keyword search. HTTP-only, no login or phone number required.

Pricing

from $2.00 / 1,000 message scrapeds

Rating

0.0

(0)

Developer

๐Ÿ‘ Scrape Sage

Scrape Sage

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Share

Extract data from public Telegram channels at scale โ€” full message history, media, reactions, polls, forwards, replies, link previews, channel stats, and in-channel keyword search. No login, no phone number, no API keys.

No login / no cookies โ€” HTTP-only (no headless browser) for fast, low-cost, reliable runs.

Why this Telegram scraper?

Typical scrapersThis actor
Require a phone number, login, or API credentialsNo login, no phone number, no API keys โ€” reads the public web preview
Return plain message text onlyReturns text plus views, author, forwards, replies, hashtags, mentions, links, media, polls and link previews
Headless browser, slow and expensiveHTTP-only (Cheerio) โ€” fast, low-cost, reliable
No way to filter inside a channelNative in-channel keyword search returns only matching messages
Whole-timeline onlyFilter by date range (newer than / older than, ISO or relative like 7 days)
Channel metadata is an afterthoughtDedicated channelInfo mode for title, description, subscriber and content counts

Use cases

  • Crypto / web3 monitoring โ€” track trading-signal channels and community sentiment across many channels at once.
  • OSINT & threat intelligence โ€” collect message history, forwards, and link previews from public channels for analysis.
  • News & topic aggregation โ€” pull fresh posts from news and announcement channels and filter to a recent date window.
  • Brand & competitor tracking โ€” search channels by keyword to surface only mentions you care about.
  • LLM / RAG dataset building โ€” export clean, structured message records for fine-tuning, retrieval, and sentiment pipelines.

How to use

  1. Sign up for Apify โ€” the free plan is enough to try this actor.
  2. Open the Telegram Scraper, fill in the inputs you need, and click Start.
  3. Watch results stream into the dataset table as each record is parsed.
  4. Export as JSON, CSV, Excel, XML, or RSS โ€” or pull results programmatically via the Apify API.

Input

{
"channels":["@durov","https://t.me/telegram"],
"resultsType":"messages",
"maxMessages":200,
"searchQuery":"",
"oldestMessageDate":"30 days",
"downloadMedia":false,
"proxyConfiguration":{"useApifyProxy":true}
}
  • channels (required, array) โ€” public channels to scrape. Accepts @username, plain username, or a t.me/username URL (also t.me/s/username). Private/invite-only channels are not supported.
  • resultsType (string, default messages) โ€” messages to scrape each channel's messages, or channelInfo for channel metadata/stats only.
  • maxMessages (integer, default 100) โ€” max messages per channel. Ignored when resultsType is channelInfo.
  • searchQuery (string, optional) โ€” when set, returns only messages matching this keyword in each channel, using Telegram's native in-channel search. Leave empty to scrape the full timeline.
  • oldestMessageDate (string, optional) โ€” stop once messages older than this date are reached. Accepts ISO dates (e.g. 2026-01-01) or relative values like 7 days, 3 months.
  • newestMessageDate (string, optional) โ€” skip messages newer than this date. Accepts ISO or relative values like 1 day.
  • downloadMedia (boolean, default false) โ€” download photos/videos/documents into the run's key-value store and add a reference to each record. Media URLs are always included regardless of this setting.
  • proxyConfiguration (object) โ€” proxy settings; Apify Proxy (datacenter) recommended for reliability at scale.

Output

In messages mode, each message is one dataset record:

{
"channel":"durov",
"messageId":372,
"url":"https://t.me/durov/372",
"date":"2026-05-21T14:02:11+00:00",
"text":"Example post text...",
"views":1200000,
"author":"Pavel Durov",
"forwardedFrom":null,
"forwardedFromUrl":null,
"replyToUrl":null,
"isPinned":false,
"hashtags":["#telegram"],
"mentions":["@telegram"],
"links":["https://example.com"],
"media":[{"type":"photo","url":"https://cdn5.telesco.pe/file/..."}],
"poll":null,
"linkPreview":null
}

In channelInfo mode, each record contains channel, url, title, username, description, avatarUrl, subscribers, and content counts (photosCount, videosCount, filesCount, linksCount).

Notes:

  • Optional fields are returned as null when Telegram doesn't expose them on the public preview (e.g. author, views, forwardedFrom, poll, linkPreview).
  • When downloadMedia is enabled and a file is stored, each media item gains a storeKey pointing to the run's key-value store; media URLs are always present either way.
  • Private/invite-only channels are skipped with a clear log message; the run still completes as a success.

Automate & schedule

Run this actor on autopilot and pull results into your own stack:

import{ ApifyClient }from'apify-client';
const client =newApifyClient({token:'MY_APIFY_TOKEN'});
const run =await client.actor('scrapesage/telegram-scraper').call({
channels:['@durov','https://t.me/telegram'],
resultsType:'messages',
maxMessages:200,
oldestMessageDate:'30 days',
downloadMedia:false,
});
const{ items }=await client.dataset(run.defaultDatasetId).listItems();
console.log(`Got ${items.length} records`);

Integrate with any app

Connect the dataset to 5,000+ apps โ€” no code required:

  • Make โ€” multi-step automation scenarios.
  • Zapier โ€” push new records straight into your CRM or sheet.
  • Slack โ€” get notified when a run finds something new.
  • Google Drive / Sheets โ€” auto-export every run to a spreadsheet.
  • Airbyte โ€” pipe results into your data warehouse.
  • GitHub โ€” trigger runs from commits or releases.

Use with AI assistants (MCP)

The output is clean, LLM-ready JSON. Call this actor from Claude, ChatGPT, or any agent framework through the Apify MCP server โ€” ask your assistant to "pull the last 200 messages from @durov and summarize what changed this week" and let it run this scraper for you.

More scrapers from scrapesage

Need data from other sources? Try these scrapesage actors:

Tips

  • Pass channels as @username, plain username, or full t.me/... links โ€” the actor normalizes all three.
  • Combine searchQuery with your channel list to pull only on-topic messages instead of the whole timeline (note: it searches within the channels you provide, not all of Telegram).
  • Use oldestMessageDate / newestMessageDate with relative values like 7 days to keep recurring runs lightweight.
  • Only enable downloadMedia when you need the actual files โ€” URLs are always included, and skipping the download keeps runs faster and cheaper.
  • Keep proxyConfiguration on Apify Proxy (datacenter) for reliable runs at scale.

FAQ

Do I need a Telegram account, phone number, or API key? No. The actor reads Telegram's public web preview over HTTP โ€” no login, no phone number, no credentials.

Can it scrape private or invite-only channels? No. Only public channels are accessible via the public web preview. Private/invite-only channels (and standard user-account messages) are skipped with a clear log message.

Is this legal? The actor only collects publicly visible data from public channels. You are responsible for using the data in line with Telegram's terms and applicable laws.

What if a channel has no matching messages? Empty results are reported as a successful run. Date filters and searchQuery may legitimately return zero records for a given channel.

In what formats can I export the data? JSON, CSV, Excel, XML, or RSS via the Apify console, or programmatically through the Apify API.

Where do downloaded media files go? Into the run's default key-value store (when downloadMedia is enabled), with a storeKey reference added to each media item in the dataset.

Need help?

Open an issue on the actor's Issues tab, or visit the Apify help center. Feature requests are welcome โ€” this actor is actively maintained.

You might also like

Telegram Channel Scraper | Messages, Media & Metadata

muzafferkadir/telegram-channel-scraper

Scrape public Telegram channels โ€” messages, views, media URLs, forwards, replies, link previews and channel metadata. No login or API key. MCP-ready.

๐Ÿ‘ User avatar

Muzaffer Kadir YILMAZ

2

Telegram Public Channel Scraper

rupom888/telegram-scraper

Scrape public Telegram channels for messages, media, and channel info. Extract message text, date, views, forwards, reactions, and media attachments. Get channel statistics: subscriber count, description, and message history. Works with public channels only โ€” no login required.

Telegram Channels Scraper: Messages, Contacts & Leads

khadinakbar/telegram-channel-scraper

Extract message history, view counts, reactions, media URLs, links, emails, and channel metadata from public Telegram channels. No API key or login required.

56

Telegram Channel & Profile Scraper

automation-lab/telegram-scraper

Scrape Telegram public channels and profiles โ€” channel metadata, messages, views, reactions, and media URLs. No API key or login needed.

๐Ÿ‘ User avatar

Stas Persiianenko

297

Telegram Channel Scraper

boundary/telegram-channel-scraper

Scrape public Telegram channel posts โ€” text, photos, videos, reactions, polls, link previews, and more. No login or API key needed.

Telegram Channel Scraper

sourabhbgp/telegram-scraper

Extract messages, reactions, media & metadata from public Telegram channels. No API key or account needed. HTTP-only โ€” fast, cheap, reliable.

44

Telegram Scraper โ€” Channel Messages & Media

cryptosignals/telegram-channel-scraper

Extract messages and media from public Telegram channels. Get message text, author, timestamp, views, forwards, and media URLs. Ideal for OSINT, crypto monitoring, and content research. PPE pricing โ€” pay only for results.

8

Telegram Channel Scraper

parseforge/telegram-channel-scraper

Archive messages, media, reactions, and metadata from any public Telegram channel - 35 fields per message, no phone or API key required.

Telegram Channel Scraper Goat

goat255/telegram-channel-scraper

Scrape messages from public Telegram channels in bulk. Returns one clean row per message with id, date, text, views, media flags, media URLs, forwards, and links, plus an optional channel info summary.