At Praxium Labs we build this for Nepali businesses every month; this is the field-tested version. For Nepali sellers using HamroBazar — real estate agents, used-car dealers, electronics resellers — every inquiry is a hot lead that goes cold within 30 minutes. The n8n recipe below ensures every lead is in your CRM and pinging your sales team within seconds, not hours.
Why email parsing instead of API
HamroBazar runs a closed seller dashboard; there is no public API for incoming inquiries. The reliable workaround is the notification email that arrives every time a buyer messages or calls about your listing. Email parsing is unglamorous but rock-solid — it has worked for our real-estate clients since the platform launched.
The n8n workflow
- IMAP trigger: connect to a Gmail / Zoho / Workspace mailbox that receives HamroBazar notifications
- Filter: only emails from
noreply@hamrobazaar.comwith subject containing "new inquiry" - Function node: parse buyer name, phone, listing ID, and message body from the email
- Deduplicate: by buyer phone + listing ID (same buyer can ping the same listing multiple times)
- Enrich: look up the listing in your internal product catalogue for full details
- CRM: create a new lead in Bitrix24, Pipedrive, or HubSpot
- WhatsApp: ping the assigned salesperson with the buyer's phone and the listing
Email parsing without breakage
Email parsers are fragile if you anchor on visual layout. The robust approach is regex against stable token strings ("Phone:", "Listing ID:") rather than line numbers. Test the parser against 50+ historic emails before going live; the failure mode is silent — an email arrives, parsing fails, no CRM entry, no alert. Always wrap parsing in a try/catch and route failures to a "needs human" Slack channel.
Why deduplication matters
Hot listings get the same buyer pinging 3–5 times. Without dedupe your CRM fills with duplicate leads, sales people get pinged repeatedly, and the lead-quality signal degrades. Use buyer_phone + listing_id as the unique key; on duplicate, just bump a "ping count" field on the existing lead.
Speed-to-first-response is the whole game
For Nepali used-car and real-estate inquiries, lead-to-call latency is the strongest predictor of conversion. Industry benchmarks: leads contacted within 5 minutes convert at 8x the rate of leads contacted after 30 minutes. The workflow above hits a 30-second WhatsApp ping; the rest is on your sales team to actually pick up the call. For related context, see our Complete Guide to n8n Automation for Nepali Businesses post.
Frequently asked questions
Will HamroBazar block me for automating this?
No — you are not scraping their site. The notification emails are sent to you legitimately because you own the listing; how you process those emails is your choice. The workflow is undetectable from HamroBazar's side.
What if HamroBazar changes the email format?
They have done so twice in the last three years. Set up a weekly health-check workflow: parse a known-good test email and alert if any required field comes back null. Time to fix is usually under an hour once you know the format changed.
Can I do this for OLX, Bikroy, or Sajilo Sandesh?
Yes — same pattern. Each platform has its own notification email format; you build a parser per platform and route them all to the same lead-creation sub-workflow.
Do I need a paid CRM for this to work?
No — Bitrix24 has a free tier that handles up to 12 users, Zoho CRM Free up to 3 users. For a one-person agent a simple Google Sheet is fine; upgrade when you hire your second salesperson.
How do I attribute revenue back to the lead source?
Tag every lead with source=hamrobazar and the listing_id. When the deal closes in your CRM, the source tag flows through to revenue reports. Build a weekly Looker Studio dashboard showing leads-to-revenue per source — that is how you justify which platforms to invest more in.
Who can build this in Nepal?
Praxium Labs — Nepal's AI and automation consultancy, based in Lalitpur — designs and builds the systems described in this guide for Nepali businesses and for international teams hiring from Nepal. Start a project or see all services.