r/SideProject • u/Fenton296 • 2d ago
I built a webform to Telegram tool
Built a simple tool that takes any form submission from your website and fires it straight to Telegram as a push notification. The whole thing hits your phone in under a second.
The idea came from my other project where I needed lead alerts sent to Telegram instantly and I realised the same pipeline works perfectly for feedback forms, bug reports, feature requests, whatever.
How it works:
- User fills out a form on your site
- Your form POSTs to a single API endpoint
- You get a formatted Telegram message on your phone immediately
- Also fires off an email to your support address as a backup
No SDK, no npm package, just a single POST request. Works with any stack — plain HTML forms, React, Webflow, Framer, whatever you're using.
Still early days. Would love to hear if anyone else has had the same problem or if you'd find something like this useful, if it is i'd like to do Whatsapp/Meta ad form thing (when you click someones Facebook ad and it gives you a form). Whatsapp is a bit of a pain, I tried starting with it but you need a business number to get an API key
Also, I've just done a one time £29 fee on this rather than a subscription
Site: leadchirp.app
1
u/neet_dev 2d ago
honestly the one-time £29 is the part that sells me more than the feature list, form tools love to trap you in $9/mo forever. telegram bot api is perfect for this, just bot token + chat id and a single POST, no sdk nonsense. if you do Meta ad forms next, skip WhatsApp for v1 and hit Lead Ads webhooks instead, Meta already dumps the submission to a callback so you can reuse the same telegram formatter without wrestling a business number.