Budget: 4000 UAH Deadline: 4 days
Hello. Parsing discussion participants in TG with a filter for those who have their own public channel in their profile is exactly my topic; I did something similar with Telethon. I will extract only unique profile links without duplicates, directly into a ready CSV. Are the channels for collection public, or are there any private ones that require a request for access?
Budget: 3000 UAH Deadline: 5 days
Good day, Rashyd!
Yes, such logic can be implemented — and exactly in the form you need: not a "regular parser," but a simple tool with selection based on your rules.
I see the task as follows:
— you insert a link to a chat or channel;
— if it’s a channel, the program goes to its "Discussions";
— collects participants of the discussion;
— removes duplicates;
— keeps only those users who have a public channel specified in their profile;
— additionally checks that this channel has at least 200 subscribers;
— outputs a list of unique links to suitable profiles.
What’s important: there are nuances in Telegram regarding access to user data and discussions, so before development, I would immediately check on 1–2 real examples how the channels/chats you need behave. This will allow us to avoid creating a "theoretical" solution and instead gather a working version tailored to your scenario.
In terms of format, I can make it as simple as possible:
— either a separate program with one field for the link and a start button;
— or a Telegram bot with the same simple scenario.
I would recommend the option where everything for you comes down to one action: insert the link → start → get the final result without manual filtering.
If you want, in the first message after selecting the project, I will briefly outline the optimal implementation option specifically for your case and what is better to choose: a bot or a small program.
🌐 My portfolio with recent cases:
https://mrnko.com
💼 Freelancehunt profile: Freelancehunt
🤝 I would be happy to discuss the details, answer your questions, and offer the optimal solution for your project.
Budget: 2500 UAH Deadline: 2 days
😀 Hello!
✅ I will complete it quickly and efficiently 👌
✅ I have done similar work before — parsers in Python (Telethon) 🎯
🛠 How I will do it: I will enter the discussion through the link to the channel/chat, gather participants (ID, username, name) via Telethon, and export to CSV/Excel; I can create it as a simple program or a Telegram bot — your choice
🎥 Portfolio: Freelancehunt
✅ Feel free to contact me 👌🙂
Budget: 3000 UAH Deadline: 3 days
Hello! I have ready experience in parsing Telegram through Telethon (own production parsers, working 24/7 on the server, filtering by criteria, deduplication). For your task: I collect participants of the channel discussion, for each one I check the presence of a linked channel in the profile through getFullUser (note: if the user did not specify a channel in the bio — it is impossible to determine, this is a limitation of Telegram, not the tool), I enter the channel and check the subscribers (from 200), remove duplicates, export to CSV/Excel. I am ready to run on 1-2 of your real links for free and show the result before payment — you will see the quality of filtering in practice. I will consider Telegram limits (pauses between requests) so that the parser account does not get blocked.
- Projects -
- Rating -
- Rating 485
Budget: 1000 UAH Deadline: 1 day
Hello.
I have experience in integrating WayForPay payments, integrating CRM systems, and developing Telegram bots for subscription services. My previous projects include solutions for e-commerce with automated digital delivery and payment processing.
I am ready to start working as soon as you confirm.
Budget: 5000 UAH Deadline: 1 day
Good day! I develop in Python, have worked on similar projects with React/Node.js, and am ready to collaborate.
Budget: 27000 UAH Deadline: 10 days
Feasibility is there, but there's a nuance - this is not a regular parser, but a tool with profile verification, public channel checks, and a threshold of 200 subscribers. I would not make it as a fragile bot based on clicks, but as a small program with authorization through a Telegram session, a queue of links, deduplication, and exporting the results to CSV or a table.
Regarding timelines - the target is 7-10 days. Budget - starting from 35,000 UAH on the condition that we only work with publicly available chats, discussions, and without bypassing Telegram restrictions. Promising to collect everything would be nice, but technically irresponsible - where the API does not return participants or profile data, we need to correctly show the status, not invent results =/
In implementation, I see the following blocks:
> input link to the channel or chat
> determine discussion for the channel if it is connected
> collect available participants and authors of messages
> check user profile for the presence of their own public channel
> check the channel for a minimum of 200 subscribers
> remove duplicates
> export unique links and a log of reasons why some profiles did not pass the filter
I will clarify 2 points, without them the assessment may vary a bit:
> Do you need a program on your computer or a Telegram bot with an admin panel?
> Export needed in CSV, Excel, or Google Sheets?
From similar experience in automation logic and agents:
> https://business.ingello.com/vorfahr - automation of data search and processing with business logic selection
> https://business.ingello.com/fractal - complex automation scenarios where queues, statuses, and error control are important
Main page of Ingello for Freelancehunt - https://systems-fl.ingello.com
We can keep the first version simple - create a stable MVP, run it on your 3-5 real links, and only after that add mass mode and additional filters. Better to have less magic, but for it to work predictably.
Budget: 4500 UAH Deadline: 3 days
Hello.
I develop parsers and bots for Telegram using NodeJS. I'm ready to take on the project. Write to me, and we will discuss.
Budget: 5000 UAH Deadline: 1 day
I have a ready parser that does almost everything you need. It parses chats and channels but does not check participants for the presence of their own channels. I am ready to add this functionality.
Budget: 5000 UAH Deadline: 3 days
Hello.
I have extensive experience in developing Telegram bots.
Feel free to contact me privately, we will discuss the details and get to work.
Budget: 999 UAH Deadline: 1 day
Rashyd, such logic can really be implemented: a bot or a simple web application will accept links, go to the "Discussion" of the channel, collect unique profiles, and filter only those who have a public channel with 200+ subscribers. I have worked with Laravel/Vue and can offer a reliable, as simple as possible solution without unnecessary steps. I can immediately describe the optimal architecture and the risks of Telegram restrictions.
Budget: 1000 UAH Deadline: 1 day
Good day, Rashyd!
In general, the task is clear, but to provide an accurate response regarding the timeline and price, I would like to clarify some questions that arose after analyzing your task.
Please write in private messages – we will discuss the details and your wishes.
Budget: 3800 UAH Deadline: 3 days
Hello, Rashid! The task is fully implemented, and you specified the categories correctly. However, as a Backend developer with a DevOps background, I must immediately warn you about the main pitfall of this project that most performers remain silent about. The logic itself (auto-transition to discussions, user collection, and deduplication) is the simple part. The critical point is filtering (checking the profile for the presence of a channel and a counter of 200+ subscribers). Telegram has strict limits (Rate Limits) on the getFullUser method (viewing detailed profile info). If the script starts to rapidly poll thousands of profiles in a row, your parser account will get banned (FloodWait) after the first hundred users.
⚙️ Here’s how I will implement this tool to ensure it works stably:
Client API Architecture: A regular bot (through BotFather) does not have access to user bios. I will develop a solution in Python using the Telethon library (MTProto API), which will operate through a technical Telegram account (userbot).
Smart Anti-Flood mechanism: I will incorporate asynchronous task queues with custom delays (timeouts) into the architecture. The script will mimic the behavior of a real person, allowing for database collection without blocks.
Two-step filtering: The script collects unique IDs from discussions -> parses profile descriptions -> if it finds a link to a channel, it makes a quick request for the number of subscribers -> if the counter ≥ 200, it adds to the final list.
User-friendly interface (MVP): For you, it will be as simple as possible. I will wrap the script in a convenient shell (either a separate management bot or a desktop utility): you paste the link, start the process, and receive a clean Excel/CSV file without duplicates.
Since I specialize in infrastructure optimization, containerization (Docker), and runtime system monitoring, I guarantee that the software will be written neatly, will not "crash" due to lack of memory when processing large chats, and will be fully autonomous.
Please tell me what volumes (approximate number of participants in the chats) you plan to work with at the start? Let’s discuss the details in private messages!
Budget: 1234 UAH Deadline: 1 day
Hello! I have experience in developing bots/programs for data parsing in Telegram. I would be happy to help you.
Budget: 12000 UAH Deadline: 7 days
Hello. You are absolutely right - standard "box" parsers will not cope here. Your task requires not just data collection, but deep filtering of each profile. Since you are not a programmer, I will answer the main question right away: yes, it is entirely possible to implement.
Here’s how we will do it to provide you with the most convenient tool:
Interface: You will receive a regular Telegram bot. You send it a link to the channel - it starts working. After completion, it sends you a ready file (Excel or TXT) with a clean database of unique links. No complicated consoles or settings.
Custom logic under the hood: Our script will enter discussions, collect participants, and individually check their descriptions (bio). If there is a link to the channel - the script checks the subscriber count. Strictly 200+ - we add to the database, others are filtered out.
Security (this is important): Telegram strictly punishes and blocks accounts for mass profile checks. We will immediately incorporate a limit bypass system into the architecture (smart pauses, API error handling) so that your parser works stably and does not get banned halfway through the process.
We specialize in developing non-standard Telegram solutions and automation.
If you are ready to start working on a reliable tool, message me privately. I will ask a few clarifying questions regarding the export format and will fix the exact deadlines and budget for you.
- Projects -
- Rating -
- Rating 427
Budget: 16000 UAH Deadline: 10 days
Hello! The issue of implementing parsing of closed chats has an important nuance.
Technically, Telegram does not allow access to the participants of a private group if your account is not a member. From the platform's security perspective, mass data collection (parsing) from a large number of groups using one account is a direct path to receiving a "Spam Block."
How can I implement this safely:
1. Stack: I work in PHP, so I will develop a tool that is fully manageable and stable (using the professional library MadelineProto).
2. Logic of operation: The script will operate through your real account (session). For it to see the participants of the closed group, it must be a member of that group.
3. Security: To prevent the account from getting banned, we will implement a delay system and limit the number of requests. We will not "blow" the Telegram server, but will operate in a "human" user mode.
Important: If you plan to parse dozens of closed groups, you will need not just one account, but a series of warmed-up accounts (so-called "farm"), otherwise any parser will get banned within an hour.
Are you ready to provide an account for parsing, and how many groups do you approximately need to process?
Budget: 5000 UAH Deadline: 3 days
Good day!
We have experience in developing Telegram tools and parsers based on the Telegram API (Telethon/Pyrogram).
We can implement a solution that:
* accepts a link to a chat or channel;
* if a channel is specified — automatically navigates to its discussion and analyzes the participants;
* collects only unique profiles without duplicates;
* filters users who have a public Telegram channel listed in their profile;
* checks the number of subscribers of the channel and retains only channels with 200 or more subscribers;
* exports the results to TXT or Excel with links to the profiles.
We will also provide an understandable interface: just paste the link and click "Start." After the analysis, the user will receive a ready file with the results.
Before starting work, we can discuss the technical nuances related to the limitations of the Telegram API and suggest the most stable implementation option.
Budget: 3000 UAH Deadline: 5 days
Hello!
The task is feasible. I have experience with Python and the Telegram API.
What I will implement:
Input link to the channel/chat
Automatic transition to the channel discussions
Filtering users who have a public channel with 200+ subscribers
Exporting unique links to profiles
Simple interface - paste the link, click start, get the result
I am ready for discussion.
Budget: 4500 UAH Deadline: 3 days
Hello! The full list of participants in large Telegram groups is not provided through the API, so I am collecting those who have actually appeared in the discussion feed and running them through your filters. I take the personal channel of a person from the extended profile via MTProto (Telethon), where this field is visible; I check the number of subscribers to the channel with a separate request. A tricky point: when checking each profile, Telegram quickly imposes a flood limit, so the collection is done through a queue with pauses to prevent the account from getting banned in the middle of the extraction. The output is a clean list of unique links. I will outline the optimal scheme and feasibility for free in private messages. I look forward to collaborating.
Daria Bocharova
Winning proposal- Projects 8
- Rating 5.0
- Rating 1 848
Budget: 3000 UAH Deadline: 7 days
Hello! I am ready to develop a Telegram bot that will effectively parse participants from chats and channels using Python and the Telethon library. The bot will be able to handle up to 1000 requests per minute, ensuring fast and high-quality extraction of unique links to user profiles. I will use approaches that guarantee compliance with your selection criteria, including the presence of a public channel and the number of subscribers. I can send examples of similar projects and architectural diagrams in private messages.
Budget: 2500 UAH Deadline: 3 days
Hello! The task is fully implemented, and the selection logic is clear. You have indicated the categories absolutely correctly. The most convenient option for you as a user is to make this as a separate Telegram bot. You won't have to install anything on your computer: just forward the bot a link to the chat or channel, it will go into the discussion itself, check the profiles of each participant, filter out channels with less than 200 subscribers, and provide you with a clean Excel file with unique links. I will technically implement this through the official Telegram API (using the Telethon/Pyrogram library in Python), so the collection will work quickly. Preliminary estimate: Budget: 2,500 – 3,500 UAH. Deadline: 2–3 days (including testing). I am ready to discuss the format of the final file in more detail and start the work through Safe. Available in the chat throughout the day!
Budget: 1300 UAH Deadline: 3 days
Good day! I am implementing this through Telethon, with which I have experience. I just tested the most risky moment from the technical specifications - collecting users' channels and their number of subscribers, it is indeed feasible.
How the solution will work:
1. You insert the link to the channel or chat
2. If it is a channel - the script automatically finds the "discussion"
3. Collects participants with delays to avoid hitting the Rate Limit
4. For each user, checks for the presence of their own channel, and if there is one - the number of subscribers
5. Filters according to your criteria
6. Saves the result in a table
Write to me, I will be happy to collaborate!
Estimated completion time: 3-4 days
Budget: 4500 UAH Deadline: 3 days
The task is fully feasible, but standard bots will not work here due to Telegram's restrictions. The optimal solution is a script that will operate from a real account. The script will be able to automatically enter discussions, parse profiles, find links in descriptions, and check the number of subscribers on these channels (>200). For you, it will look like a simple program: you paste the link and receive a ready text file.
Development stack: Python + Telethon
Estimated timeline: 3-4 days, preliminary cost: $100–150.
Message me privately, I'm ready to discuss the details.
Budget: 1200 UAH Deadline: 3 days
Hello!
Your task can be successfully implemented considering all requirements. Given the specifics of the filters, standard parsers will not be suitable here, so I will create a custom tool specifically for your needs.
Key aspects of execution and technical limitations:
Using a regular Telegram bot (through BotFather) for this task is ineffective, as such bots cannot view regular user profiles and determine if they have channels.
Optimal approach: Create a script in Python using the Telethon or Pyrogram libraries. This will allow for legal analysis of discussions in channels, visiting participant profiles, and checking compliance with criteria.
How the tool will work for you:
The interface will be simple — either a Telegram bot (operating through a UserBot session), where you simply send the link, or a console program where you paste the link and press Enter.
Logic of operation:
The program receives a link to a chat or channel and goes to the discussion.
It collects the IDs of all participants who left comments to avoid duplicates.
Using deep filters, the script accesses user profiles, checks the "About/Description" section, finds links to their public channels, and evaluates the number of subscribers through the API.
Output: In the end, you receive a list (for example, in Excel or TXT format) with unique links to users whose channels have more than 200 subscribers.
What you will get:
A fully ready tool.
A simple instruction for launching (setup will take about 5 minutes).
Clean code that works stably and efficiently.
I am ready to discuss the details: in what format you prefer to receive the report (Excel, Google Sheets, or TXT), as well as where you plan to run the tool (on your PC or on a server for continuous operation).
Best regards,
Kyrylo
Budget: 3500 UAH Deadline: 4 days
Good day! I can develop a simple tool in Python for collecting and filtering users from Telegram chats and channel discussions.
I will implement:
— input of a link to the chat or channel;
— automatic detection of the associated discussion chat;
— collection of available participants or message authors;
— profile check for the presence of a link to a public channel;
— verification of the number of subscribers from 200;
— removal of duplicates;
— export of results to CSV or Excel;
— control of Telegram limits and automatic pauses;
— simple launch and user instructions.
I propose to implement this through the Telegram Client API in Python, as the regular Bot API does not have the necessary access to participants and profiles.
An important nuance: Telegram does not always provide a complete list of participants in large chats to third-party accounts. Also, reliably determining a user's own channel can only be done when the link to it is publicly stated in the profile. I will take these limitations into account in the logic and results log.
Budget: 1500 UAH Deadline: 2 days
Good evening
I am ready to complete your work, I have experience in developing these tasks, message me privately.
Budget: 6500 UAH Deadline: 4 days
Hello! I create such things in Python (Telethon, authorization through a real Telegram session, without standard "fragile" bot-clickers). I will implement your selection logic: transitioning to "Discussions" for channels, checking the profile for the presence of a personal public channel and a threshold of 200 subscribers, deduplication of links, exporting to CSV/table.
I understand that it's hard to trust a performer without reviews on the platform. Therefore, I suggest testing it in practice: send me a link to one of your channels or chats — I will gather and filter participants according to your criteria and send you the export for free, within a few hours. You will see real results, not just promises.
If the format suits you, I will take on the other channels/chats at a lower price.
- Projects -
- Rating -
- Rating 159
Budget: 14000 UAH Deadline: 7 days
Hello! The task is completely feasible, and the selection logic is clear. Standard parsers are indeed not suited for this, as deep multi-level filtering is required.
I am ready to develop such a Telegram bot for you. To ensure the tool works reliably and does not trigger blocks from Telegram, I will implement it using the Telegram Client API (Telethon/Pyrogram). A regular bot will not work here, as only a real account (userbot) can parse channel discussion participants and check private profile data.
- Projects -
- Rating -
- Rating 226
Budget: 4000 UAH Deadline: 7 days
I will create a Telegram parser for this two-step verification: I will collect participants of the channel discussion and check each profile separately for the presence of their own channel and the number of subscribers; only unique profiles with at least 200 subscribers will be included in the sample.
I tried to create a similar parser for Telegram groups, and I know that it is harder than it looks. Checking each profile and channel takes time, and to avoid hitting Telegram's limits, pauses are necessary. This can be done, and I am ready to take it on.
I work through Telethon, and I will use a separate parser account for collection; the library provides direct access to both the list of participants and profile views.
In the end, you will receive a file/list with ready unique links, @accounts, which can be opened and worked with immediately.
We can discuss the details in the chat.
Budget: 5000 UAH Deadline: 4 days
Good day!
I am ready to complete this project
Quickly and efficiently!
I look forward to your feedback!
Budget: 1500 UAH Deadline: 1 day
Good evening, I am a Python developer with extensive experience working with Telegram. I have a ready-made option. Write to me - we will discuss the details and customize it for you.
- Projects -
- Rating -
- Rating 459
Budget: 5000 UAH Deadline: 5 days
I will implement a parser for participants of Telegram discussions with filtering by channels with 200 subscribers — exactly the logic you described.
I use Telethon (MTProto API): it provides direct access to participants of chats and discussions of channels, allows checking each profile — whether there is a public channel and how many subscribers it has. I have done similar filtering by parameters of Telegram profiles in tasks for automating audience work.
The interface is simple: you paste the link, the program automatically determines the type (channel or chat), if necessary, goes to the discussions section, collects unique participants, checks each one by criteria, and provides a ready list of links to profiles in a file.
The final cost will be clarified after the conversation — I initially estimate about 15-20 hours of work, but the exact figures depend on the details of implementation.
Write to me — we will discuss the details and start the project.
Budget: 8000 UAH Deadline: 3 days
I understood the task: I need a tool, program, or Telegram bot that parses participants from the Discussions section based on a link to a channel or chat, selects only unique users with their own public channel of at least 200 subscribers, and exports a list of profile links.
The feasibility is good; this is a standard task through the Telegram API (via Telethon or Pyrofork). We connect to the discussion chat, extract the list of participants, check each profile for an associated channel and its size (the subscriber count is available through the same API), filter, and remove duplicates.
I will create a simple interface: you paste the link to the channel or chat, start the collection, and receive a file with unique links to suitable profiles. No unnecessary setup, as you requested.
One nuance: Telegram limits the frequency of such requests, so for large chats, the collection will take time; I will include pauses between checks to prevent the account from hitting limits. This is normal for such a task and is not a blocker.
The realistic implementation timeframe is 2-3 days.
Budget: 2000 UAH Deadline: 5 days
Hello! The task is fully feasible and very interesting. I am ready to develop such a parser for you in Python using the Telethon client library (it will work through your Telegram account).
How it will work:
The script will automatically find the discussion chat of the channel, gather users, analyze their profiles for links, and check the number of subscribers on their channels. In the end, you will receive a clean list of unique links in a convenient format (for example, TXT or Excel).
Account security: Since Telegram has strict limits on fast requests, I will implement smart delays between profile checks to prevent your account from being blocked.
Working format: It can be made as a console utility (run on PC, enter the link, receive the file) or a simple menu in a Telegram bot.
Budget: 4500 UAH Deadline: 4 days
Hello! I am ready to implement this tool for you. I have experience working with the Telegram API (Telethon/Pyrogram libraries), so the task of parsing chat participants and filtering profiles based on the presence of a channel with a specified number of subscribers is clear to me. I will develop a script for you that will take a link, check for the presence of a channel for the user, analyze the number of subscribers, and save only unique profiles in a format convenient for you (for example, Excel or CSV). The implementation will be as simple to run as possible. I am ready to discuss the details and start working. Feel free to write!
Budget: 1500 UAH Deadline: 2 days
Good day!
The task is feasible, but there is a technical detail worth mentioning right away: if the account through which the collection is being made is not an admin of the chat, in large Telegram discussions, it does not return all participants, but reliably only those who have actually sent messages. For active discussions, this usually represents the main audience, but you will not receive a complete list of people silently present in the chat; this is a limitation of the platform, not the tool.
For each collected participant, I check the profile (bio) for a link to the channel, and if it exists, I go in and check the number of subscribers, filtering out those with fewer than 200. If the user has not specified a channel in their profile, it will not be possible to determine channel ownership; Telegram does not have a direct API method for this.
The process can be managed through a simple Telegram bot: you send a link and receive a file with the list. Under the hood, this will work through the Client API (Telethon) from a separate technical account, not necessarily your personal number, with pauses between requests to avoid getting blocked for frequent profile queries.
I have experience in developing Telegram bots, so wrapping it in a user-friendly interface will not take much time; the main time will be spent on the filtering logic and protection against limits. I am ready to start working today.
Budget: 20000 UAH Deadline: 7 days
We already have a similar solution for Telegram automation and lead selection, which can be quickly adapted to your logic and launched as a pilot.
It is feasible, but with a nuance - Telegram does not always provide all data on participants and profiles, so careful collection with limits and testing links is necessary.
The first version - 20,000 UAH and 7 days.
Relevant examples:
- https://business.ingello.com/vorfahr - automation of data collection and selection according to specified rules
- https://business.ingello.com/fractal - agency automation and complex workflows
For implementation, I would create a simple tool - inserting a link, identifying the channel or chat, accessing discussions, collecting unique profiles, checking for the presence of a public channel for the user, and filtering from 200 subscribers.
We can keep it simple - the output will be a file with links, sources, and collection dates.
To start, we need 5-10 examples of channels or chats and the desired export format.
I would like to clarify 2 questions:
- Will the sources be only public or partially closed?
- What is the approximate daily volume of collection needed?
More about us for Freelancehunt:
https://systems-fl.ingello.com
In touch, we can go over the details here and choose the optimal implementation method with safe limits.
- Projects -
- Rating -
- Rating 84
Budget: 850 UAH Deadline: 1 day
Hello! I have already implemented exactly such a solution: receiving a link to a channel/chat, automatic transition to "Discussions" for channels, collecting unique participant profiles with a filter for having their own channel with 200+ subscribers in bio. Everything has been tested and works. I am ready to show a demo and discuss the details.
Budget: 4000 UAH Deadline: 3 days
Good day
I can create similar software in the form of a program for Windows. To operate the program, it will be necessary to connect real Telegram accounts, from which requests will be made to obtain users and information about their channels. The more accounts are connected, the faster the program works. This is because there are limits on how often an account can request information.
Budget: 700 UAH Deadline: 1 day
Good day, I have experience in developing bots in Telegram!!!
I am ready to complete this task.
I will do it literally in 1 day. The cost is 700 UAH.
I am ready to show the bot I developed!
Budget: 2500 UAH Deadline: 1 day
Since standard Telegram bots do not have access to users' personal profiles and participant lists, I will implement this solution based on the Telegram Client API using the Telethon library. For you, this will be a very simple tool: you send the bot a link to the channel or chat, the script connects to the discussions, collects participants, accesses their profiles, finds the attached channel, checks the subscriber count (from 200), and provides you with a ready text file or Excel spreadsheet with unique links to the profiles.
I will do it as quickly as possible and with quality. Write to discuss the details.
Budget: 4000 UAH Deadline: 2 days
Hello. I am Vladimir, a Python developer and the founder of the engineering agency Vaysed. Your task of developing a tool for targeted audience parsing from chats and discussions in Telegram is completely clear to me. You are asking for an assessment of feasibility, and as a technical specialist, I am ready to discuss this process in detail.
Implementing the described logic is fully possible, but a standard Telegram bot will not handle it due to the limitations of the official API. For such deep analytics, I will write a script in Python using the Pyrogram library. The program will operate as a user bot, meaning it will act in the background on behalf of a regular technical Telegram account.
For you, the interface will be as simple as possible. You send the bot a link to the channel. The script automatically determines the associated discussion chat and collects a list of participants. Then, custom filtering logic is initiated. The program sequentially opens the profile of each collected user and analyzes the text in their description. If there is a link to a channel, the user bot discreetly accesses it, checks the status of its public visibility, and reads the number of subscribers. If there are 200 or more, the link to this person's profile is saved in the final list without duplicates.
I must immediately warn you about an important technical detail. Telegram has strict limits on mass requests to profiles and channels. To prevent the parsing account from being blocked for spam activity, the script will implement programmed delays. The process of collecting and verifying thousands of profiles will not be instantaneous, but it will be fully autonomous and reliable.
In the end, you will receive an intuitive bot where you simply need to drop a link and, after some time, retrieve a ready text file with the filtered database of necessary contacts. I will deploy and configure the entire server part and data routing myself. You can review my approach and examples of automated Telegram systems in my portfolio at the link Freelancehunt.
Please let me know if you plan to parse very large chats with tens of thousands of participants, for which I will need to incorporate the ability for multiple technical accounts to work in parallel to significantly speed up the process.
Budget: 1000 UAH Deadline: 1 day
Hello. I am ready to take on the development of a Telegram bot for effective parsing and filtering of users according to your criteria. I will propose an architecture based on the official Telegram API clients, which will allow not only to efficiently parse data but also to reliably identify public channels in user profiles and check their number of subscribers, while adhering to all technical limitations of the platform. I have experience implementing similar systems, including the development of optimized algorithms for working with the Telegram API, as well as ready-made modules for session management and avoiding blocks. The final tool will be as user-friendly as you requested, providing a clear and unique list of profile links. I suggest discussing all implementation details, final budget, and timelines in private messages.
Budget: 1000 UAH Deadline: 1 day
Good day, Rashyd Sol.
The solution is fully implemented, but the key challenge here is not the parsing itself, but checking each participant for their own channel with 200+ subscribers. Telegram strictly limits the number of requests to the API, so mass profile checks without protection will lead to a quick ban of the account. Your tool will use request queues with controlled delays and session rotation — this allows for stable data collection, albeit not instantaneously. The larger the processing volume, the longer the collection will take, and it is important to understand this in advance.
The logic will work like this: you insert a link — the bot automatically determines whether it is a channel or chat, goes to "Discussion," and extracts unique participants. Then each profile is checked for the presence of a public channel via the Telegram API, and to get the exact number of subscribers — through a controlled browser, since the API does not always return this figure directly. The result will be a clean list of links without duplicates, filtered by your criterion of 200+.
You will receive a Telegram bot with a minimal interface: one message with a link triggers the entire chain, and the finished result is sent as a file. Implementation in Go will ensure stability during long collection cycles without unnecessary dependencies. If the volume of channels to check turns out to be large, it is worth discussing a gradual working mode — this will keep the account alive and provide predictable results.
Options:
≈5 days: 4000–6000 UAH
Minimum viable tool for targeted data collection.
- Obtaining a list of unique profile links
- Basic filtering for the presence of a public channel
- Exporting results in text format
- Instructions for running the program
≈9 days: 8000–12000 UAH
Full-fledged Telegram bot with all described selection criteria.
- Automatic transition from channel to "Discussion" section
- Accurate user filtering by the limit of 200+ subscribers
- Convenient bot interface for managing the process
- Data export in Excel/CSV format for easy handling
- Speed optimization through Go
≈16 days: 15000–22000 UAH
Professional tool with extended functionality and support.
- All capabilities of the previous option
- Bypass system for limitations (anti-flood) for large data volumes
- Ability to customize the subscriber threshold (for example, change 200 to 500)
- Full support and installation of the bot on your server turnkey
- One month of technical support and updates for changes in the Telegram API
Budget: 4000 UAH Deadline: 3 days
Hello. The task is feasible. However, there are many nuances; in fact, many performers have already described them. I will briefly write from my side. A VPS is needed, on which a userbot will be launched - in simple terms, this is a Telegram that is installed on the VPS. Telegram bans for parsing, so it is preferable for the userbot to be registered not with the main Telegram number. Overall, everything can be done, feel free to reach out. I have a couple of similar templates.
Budget: 1250 UAH Deadline: 2 days
Hello, Rashid! I have reviewed your task. It is a fully implementable project, however, there is an important technical nuance: standard Telegram bots do not have access to analyze other people's profiles and channels.
I will develop a solution for you in Python 3.12 using the Client API (Telethon library). You will be able to manage the process through a convenient and simple Telegram bot (inserted the link — started the collection).
Here’s how I will implement the logic you described:
1. Discussion parsing: The script will automatically enter the "Discussions" section of the specified channel, collect the IDs of active participants, and immediately filter out duplicates.
2. Deep filtering: Using the getFullUser method, the script will check the profile of each user. If they have a linked personal public channel, the bot will enter it, check the number of subscribers, and filter out anyone with fewer than 200.
3. Protection against limits (Anti-Flood): Telegram strictly punishes frequent requests to profiles. I will set up proper "smart" pauses between actions so that your account operates stably and without blocks.
In the end, the bot will provide you with a clean, ready file (.xlsx or .csv) with a list of unique target profiles. The code will be neat, with comments, and ready for deployment on Railway hosting.
Please let me know if the data collection is planned to be conducted in a single stream from your personal account, or if you need a tool with the ability to connect multiple working profiles to speed up the process?
Budget: 900 UAH Deadline: 2 days
Hello!
The task is straightforward, but there is one nuance. Telegram hides the full list of participants for large groups, so I reliably gather those who have actually posted in the "Discussions." I go through them and pull their profiles. Then, for each one, I read the personal channel field (Telegram provides it via getFullUser), enter the channel, take the number of subscribers, filter out those with fewer than 200, and remove duplicates. The tool is simple: you paste the link, run it, and get the output in CSV. It works through my account with pauses to avoid spam limits, which dictates the speed of collection, nothing more.
I will run it on your test channel and show you a sample output before payment, so you can see for yourself that the filter for 200+ subscribers works. 900 UAH, the profile is new, I am taking less for the first review, payment through Safe after file verification. One question: do you need collection from one specific channel or a universal tool for any pasted link?
Budget: 3500 UAH Deadline: 2 days
Hello! The task is fully feasible but requires a custom solution on the Client API (user bot), as standard bots do not have technical access to analyze profiles and other channels.
Cost of implementation: 3500 UAH.
Here’s how I propose to do it:
- Interface: A simple program (one-click launch) or a convenient Telegram bot for management. You will receive a clean Excel file with the results.
- Deep filtering: The script will automatically find channel discussions, read the profiles of commentators, check for the presence of their personal channel, and filter out those with fewer than 200 subscribers.
- Protection against bans: Telegram strictly limits the frequency of profile checks. I will set the correct pauses (timings) between requests to ensure the script runs smoothly and your account is not blocked.
I am ready to start discussing the details today.
Budget: 8000 UAH Deadline: 5 days
We have experience in developing tools for working with the Telegram API, including parsing participants and content from chats and discussions. We implement this through the Telethon library, which ensures high data collection speed and operational stability. We are ready to start implementing the functionality for transitioning to discussions and exporting the audience in a format convenient for you.
Budget: 1500 UAH Deadline: 2 days
Hello!!!
I specialize in parsing and creating bots, I will make you a simple parser with convenient tools.
Feel free to reach out.
Budget: 3000 UAH Deadline: 5 days
Hello! I am ready to develop a program for parsing participants of chats and channels based on specified criteria (including where participants are hidden). I will ensure the uniqueness of links and compliance with requirements. I look forward to your questions and am ready to discuss the details.
Budget: 6000 UAH Deadline: 5 days
Rashid, the task is clear: you need a tool that will filter the active audience from chats based on specific metrics of their own channels. Since Telegram constantly updates the restrictions on accessing participant data, it is critically important to build the process through stable work with the official API to minimize the risk of blocks and ensure accurate reading of subscriber information in users' channels. I will create a local script for you with an interface for inputting links, which will automatically go through each found profile, check for the presence of a public channel, and the current number of subscribers in it. Please let me know if you plan to run the collection from one account or if there is a need to use multiple profiles to avoid limits on the number of requests?
Proposals are currently absent
Proposals concealed
Current freelance projects in the category Bot Development
-
67 USD
Signal bot for trading
Python 69 proposals 31 July
-
Not specified
Creation of an OLX bot
59 proposals 30 July
-
Not specified
Create an SEO system based on n8n
AI & Machine Learning 58 proposals 30 July
-
38 USD
Парсинг маркетплейсу
Data Parsing 38 proposals 30 July
-
69 USD
Post reposting bot for Telegram
91 proposals 28 July