Switch to English?
Yes
Переключитись на українську?
Так
Переключиться на русскую?
Да
Przełączyć się na polską?
Tak
Post your project for free and start receiving proposals from freelancers within minutes after publication!

Prom

Translated

  1. 468

    2 days111 USD

    I can take your order. Please clarify:
    1. From which Telegram channel should the products be extracted — your channel or a third-party one?
    2. Are the products published in the form of photo + description + price?
    3. Is automatic publication of each new post to Prom.ua products needed?
    4. Is the store on Prom already created and is there API access?
    5. Is it only necessary to create products or also to update prices, availability, and photos?
    6. How many products are approximately published per day?

  2. 5093
     30  0
    Work example:
    Mobile app with admin
    8 days490 USD

    Good afternoon. For this setup, I would allocate 22,000 UAH and 8 days for the first working version - a Telegram channel as a source, product card analysis, photos, price, availability, category, and upload to Prom through the available API or cabinet import.

    Most likely, the main task is to carefully establish the product recognition rules and duplicate checking, so that the export is predictable and does not turn into a manual reassembly. I would start with a small module - reading new posts, bringing them to a unified format, validating mandatory fields, uploading to Prom, and writing an error log. We can keep it simple, but without a log, it will be painful later =)

    > Please clarify, are the products in Telegram already in one template - name, price, sizes, photo, description?
    > Is Prom needed through the API or are you currently using CSV or XML import?

    > https://business.ingello.com/prime-eva - close to e-commerce and working with product data
    > https://business.ingello.com/eva - an example of system automation for retail
    > https://systems-fl.ingello.com - who we are and how we approach such tasks

    !!Important!! If the posts in Telegram are chaotic without structure, it is better to break the assessment into design and prototype stages, because the main risk there is not the code, but the quality of data recognition.

  3. 2968
     23  0

    3 days178 USD

    Good day!

    I am interested in your project. I have experience with automation of exports, integration of Telegram and marketplaces, including Prom.ua and product catalogs.

    I can help with:
    — automatic export of products from the Telegram channel to Prom;
    — setting up the structure of product cards;
    — transferring photos, descriptions, prices, and characteristics;
    — automating updates;
    — setting up a convenient process for publishing clothing on Prom without manual addition.

    I can also offer different implementation options:
    • via API;
    • via parser/bot;
    • through an intermediate database or CMS;
    • with automatic assortment updates.

    Before starting, I will help you choose the optimal and stable option based on your volume of products and format of publications in Telegram.

  4. 878
     7  0

    4 days134 USD

    Hello, I am ready to create this parser. I make parsers of various complexities!

  5. 196  
    5 days267 USD

    There is already a practically ready similar solution for exporting products from a Telegram channel to a marketplace, which can be quickly adapted for Prom and launched. ))

    Regarding the timeline - 3-5 days for a working version.
    Regarding the budget - starting from 12,000 UAH, if complex moderation logic, product variations, and stock levels are not needed.

    Here’s the nuance - for clothing, it’s important to properly analyze photos, sizes, colors, prices, descriptions, and availability.
    AI verification can help standardize descriptions, highlight empty fields, and prevent sending error-filled cards to Prom.

    - Are products currently published in Telegram in one format or are the posts different?
    - Is there a need to transfer old posts or only new publications?
    - Is there an API available for you on Prom or is a file export planned?

    Similar cases:
    - https://business.ingello.com/eva - automation of product processes
    - https://business.ingello.com/carveli - e-commerce and product logic
    - https://business.ingello.com/vorfahr - automation with AI, where data needs to be organized before action

    Our profile for such tasks - https://systems-fl.ingello.com

    Overall, it’s fine, we can keep it simple - first, we make a stable export, then we add improvements to descriptions and checks if it makes sense.
    I’m available here, we can discuss the details now (:---

  6. 558    4  0
    10 days74 USD

    Hello Victoria! I can write you a Python script that will do this automatically. Write to me, and we will discuss the technical specifications.

  7. 457  
    3 days45 USD

    I see that you probably have a lot of manual work right now: posts with clothing are already in Telegram, but they have to be transferred separately to Prom.ua. This is exactly the type of task where automation provides the maximum time savings.

    I have worked with process automation through Make.com, CRM, and AI integrations, including connections between messengers, forms, content, and business systems. In similar cases, I built automatic scenarios for data processing and content publication without manual duplication.

    One option for implementation is to pull new posts from Telegram, automatically process the photo/description/price, and send this to Prom via API or an intermediate scenario.

    I have a clarifying question: are the products already formatted in a specific template for Telegram posts, or is the structure still chaotic?

  8. 315  
    3 days67 USD

    Hello, I can implement automatic product export from Telegram to Prom.ua. I would like to clarify:
    - what exactly does the post in Telegram contain (photo, price, description)?
    - do you only need to create products or also update them?
    - is the Prom API being used?
    After clarification, I will be able to accurately assess the timeline and cost.

  9. 2116    20  0
    3 days72 USD

    I understood the task: we need to connect Prom.ua with a Telegram channel for automatic uploading of products (clothing) from the channel to the Prom catalog.

    This is classic automation — we parse messages from the Telegram channel, extract text and media, normalize it into product format (name, description, price, photo, sizes), and push it to the Prom catalog via their API.

    In parts.

    Telegram part. Pyrofork or Telethon as a userbot client (not Bot API — Bot API cannot read the channel history, only new events after adding the bot, and only if the bot is an admin). The userbot reads all new posts from your channel, retrieves text and media files, and stores them in proxy storage. If you want existing posts to also move to Prom — the userbot performs a historical impact: it processes the last N posts and handles them in batch.

    Product parsing. Usually, in clothing Telegram channels, a post has the structure "photo + name + price + sizes + description". Regular expressions here are fragile; it's better to use an LLM (Claude Haiku — fast and cheap) as a parser: we provide the post text, and it returns structured JSON {title, price, sizes, colors, description, photos[]}. This is more stable than regex, especially when the post formats vary.

    Prom API. Prom has an official REST API for authorized sellers. Creating a product — POST /products with fields name, price, description, category, images. Uploading photos — first upload, then link to the uploaded image in the product body. The category needs to be matched with your catalog — either hardcoded mapping or semantic search through the list of Prom categories using embeddings.

    Architecture. A separate VPS (Hetzner cx11 for 4 EUR/month is fine), Docker Compose with containers: tg_listener (Pyrofork), parser_worker (LLM), prom_uploader (REST API), PostgreSQL for queue and logs. Each new post = a record in the database, then the pipeline processes it through the parser and uploader. Errors are logged, retry after 5/15/60 minutes.

    What I will do in stages. First — a trial reading of your channel and gathering the structure of typical posts. Second — setting up the Prom API and testing the upload of one product. Third — a complete pipeline with automatic processing of new posts. Fourth — UI or simple Telegram management (you can cancel the upload of a specific product, adjust the price, add tags via bot commands).

    Please clarify: which Telegram channel (public or private — this affects the connection method), how many posts are already in the channel and how many new ones do you expect per day, do you have API access to Prom (seller's account with connected API), and do you also need feedback (when a product is sold on Prom — mark the post in Telegram).

  10. 2025    4  0
    1 day22 USD

    Hello!

    I have already developed similar automation.
    I am ready to complete the assigned task.

    I suggest we discuss the details in private messages.

  11. 327    2  0
    3 days22 USD

    I am interested in your project. I specialize in automation and Telegram bots. Let's discuss the details.

  12. 432    1  0
    7 days100 USD

    Good afternoon! I will set up automatic export of clothing from your Telegram channel to Prom.ua. I am ready to discuss the details and get started.

  13. 709    7  0
    1 day223 USD

    Good afternoon.

    I can implement a connection between a Telegram channel and Prom for automatic product uploads.

    I initially see the following scope:
    - retrieving products from the Telegram channel;
    - parsing posts: title, description, price, photo, sizes/availability;
    - preparing data for the Prom format;
    - uploading products via API, XML/CSV, or another available method;
    - protection against duplicates;
    - test upload and result verification.

    I have worked with Telegram bots, parsing, and automatic data processing, so I can create a working solution for your task.

    Before starting, I need to see an example post with a product and understand if there is access to the Prom cabinet/API.

    Estimated cost: 10,000 UAH.
    The exact price depends on the method of uploading to Prom and the requirements for updating products.

  14. 1476    14  1
    5 days22 USD

    Hello! Do you have experience connecting Telegram with external APIs and automating data exports, including products? Let me know if Prom has an API for uploading products or if parsing is needed. I am ready to quickly set up a stable data flow!

  15. 9944    117  0
    1 day45 USD

    Hello.

    I am developing bots for Telegram. I am ready to take on the task. Write to me, and we will discuss.

  16. 309  
    3 days22 USD

    Hello! I have successful experience working with the Prom.ua API and automating data collection from Telegram. I am ready to develop a reliable solution (script or bot) that will automatically read posts from your Telegram channel, recognize text, photos, prices, and clothing characteristics, and then instantly upload them to Prom via API or by importing files (YML/XLSX). Please let me know in what format the products are currently published in the channel (text+photo, is there a clear structure for prices/sizes)? I would be happy to collaborate!

  17. 3411    32  0
    5 days178 USD

    Hello! I have software for automatic product uploads to Prom. Depending on the product data in the Telegram channel, it can be adapted in real-time. Message me privately.

  18. Nick Osipov Web4Business
    4975    41  4   1
    3 days22 USD

    Good day! I professionally develop Telegram bots and automate interactions through APIs. I have experience integrating Prom.ua and Telegram. I am ready to implement the export of clothing from the channel to Prom, with deployment on the server. Message me privately to clarify the details.

  19. 6512    229  4   7
    1 day111 USD

    Hello
    I am ready to complete it.
    Message me privately.
    We will discuss the details.
    I have done something similar.

  20. 1328    35  1
    2 days45 USD

    Hello. I have already gathered information about the product from Telegram channels. I would like to see which channel is being referred to, because there may not be enough information for promotion.

  21. 246    1  1
    1 day33 USD

    Good afternoon, I am ready to complete it, waiting for a response, I have experience in this.

  22. Another 3 proposals concealed
    1 proposal concealed

Current freelance projects in the category Data Parsing

A specialist in Telegram promotion is required.

29 USD

Tasks: invite real users from the username database to new chats and send messages to the target database. Only quality traffic and work with a live audience are of interest — performers using bots, fake engagement, or low-quality methods are requested NOT TO DISTURB. Work…

Data ParsingSocial Media Marketing (SMM) ∙ 3 days 17 hours back ∙ 8 proposals

Collection of B2B database of companies in Germany

40 USD

Goal: To obtain a list of potential employers (clients) for B2B mailing. Region: Munich (München) + radius of 50 km. Required niches: Construction companies (Bauunternehmen) Food enterprises (Lebensmittelhersteller, meat processing plants, bakeries) Logistics and…

Data ParsingLead Generation & Sales ∙ 3 days 20 hours back ∙ 34 proposals

Consultation on parsing Instagram account subscribers

Hello. It is necessary to conduct a preliminary assessment of the feasibility of the following task. I have a list of Instagram accounts. The goal is to obtain contact information (primarily email addresses) of users who follow these accounts. Previously, I encountered companies…

Data Parsing ∙ 7 days 12 hours back ∙ 13 proposals

A specialist is needed to find contacts of decision-makers in Ukraine.

It is necessary to gather a database (or ready database) of contacts of decision-makers (DMs) in companies in Ukraine.

Information GatheringData Parsing ∙ 7 days 17 hours back ∙ 21 proposals

Need to scrape data from LinkedIn

We need to scrape data from LinkedIn based on our list. For each entry, we need to find and collect available data if it exists on the LinkedIn profile, including the profile picture on the LinkedIn social network, email address, links to social media, company website, and…

Data Parsing ∙ 7 days 23 hours back ∙ 28 proposals

Client
Vyktoryia Pushkareva
Ukraine Odessa  1  0
Project published
29 days 1 hour back
787 views
Tags
  • Telegram
  • API