npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-indiamart

v1.0.19

Published

n8n community node for IndiaMART

Readme

Banner image

n8n-nodes-indiamart

This is an n8n community node that enables seamless integration with IndiaMART for product sourcing and purchasing workflows.

IndiaMART is India's largest B2B marketplace, connecting buyers and suppliers across industries.

n8n is a fair-code licensed workflow automation platform.

Installation
Credentials
Operations
Compatibility
Usage
Resources

Installation

Follow the installation guide in the n8n community nodes documentation.

Credentials

To power your IndiaMART n8n node, you need an API key. Follow these simple steps to get your credentials:

  1. Visit the Credentials Page: Go to indiamart.com/new/gamma/n8n_index.php.
  2. Enter Details: Provide your registered mobile number or email address.
  3. Verify OTP: Enter the one-time password (OTP) sent to your registered contact.
  4. Get Credentials: Copy your unique key and use it to authenticate your n8n node.

Operations

This package includes the following nodes:

Search

Search for products on IndiaMART by keyword and retrieve a list of matching product names

Post Requirement

Post a product requirement on IndiaMART using the saveEnrichment API to generate sourcing requests

Compatibility

Tested locally against n8n v1.104.2.

Usage

IndiaMART Search Node

Node Configuration

The IndiaMART Search node requires a single parameter:

Keyword (required)

  • The search term to query on IndiaMART
  • Examples: "school bags", "office supplies", "women's clothing"

Output

The node returns an object with:

{
  "products": [
    {
      "name": "Plastic Dancing Cactus Toy",
      "number": "8044562706",
      "companyname": "Shree Lalankrupa Enterprise",
      "image": "http://5.imimg.com/data5/SELLER/Default/2024/3/405052888/TF/TX/ZQ/214979800/dancing-cactus-toy-500x500.jpeg"
    },
    {
      "name": "Multicolor Tk Candy Flower Toy For Kids",
      "number": "8047668613",
      "companyname": "Arora Toys",
      "image": "http://5.imimg.com/data5/SELLER/Default/2025/3/497677672/FU/SX/TI/81433069/whatsapp-image-2025-03-23-at-9-01-54-pm-500x500.jpeg"
    }
  ],
  "keyword": "toys"
}
  • products: Array of product objects with details
    • name: Product name
    • number: Mobile number of the company/supplier
    • companyname: Company/supplier name
    • image: Product image URL
  • keyword: The search keyword used

IndiaMART Post Requirement Node

Node Configuration

The IndiaMART Post Requirement node requires the following parameters:

Product Name (required)

  • The name of the product for which you're posting a requirement
  • Examples: "Pave Diamond Pendant", "Office Chairs", "Electronics"

Quantity (required)

  • The quantity of the product required
  • Example: 10

Quantity Unit (required)

  • The unit of measurement for the quantity
  • Examples: "Piece", "Kg", "Ton", "Box"

Additional Requirements (optional)

  • Any specific requirements, preferences, or details
  • Example: "Need high quality finish"

Output

The node returns an object with:

{
  "message": "Successfully posted requirement on IndiaMART",
}
  • message: Success or error message

Using the IndiaMART Nodes

Once installed:

  1. Create a new workflow or open an existing one
  2. Add IndiaMART nodes: Search for "IndiaMART" in the node panel and drag nodes into your workflow
  3. Configure parameters: Enter required parameters for each node
  4. Execute the workflow: Test your workflow to retrieve results
  5. Use the output: Connect to other nodes to process, filter, or store the results

Workflow Examples

Automated Lead-to-Post

Scenario: A customer emails you asking for a specific bulk item.

[Gmail Trigger] → [AI Agent] → [IndiaMART Search] → [IndiaMART Post Requirement] → [Log Output]
  1. Gmail receives an email: "I need 500 wooden toy cars."
  2. AI Agent: Extracts the keyword "wooden toy cars".
  3. IndiaMART Search: Scans for existing suppliers to check market prices.
  4. IndiaMART Post Requirement: Automatically posts requirement on Indiamart so suppliers for wooden toy cars contact you directly.

Spreadsheet Batch Sourcing

Scenario: You have a list of products in a Google Sheet that you need to source.

[Google Sheets Trigger] → [AI Agent] → [IndiaMART Search] → [IndiaMART Post Requirement] → [Update Sheet]
  1. New row added to Google Sheets: "Product: LED Lights".
  2. AI Agent: Extracts the product keyword to search.
  3. IndiaMART Search: Finds the top 10 current listings for LED Lights.
  4. IndiaMART Post Requirement: Post requirement on Indiamart to connect with verified suppliers.

Author

Gyaneshwar Mongha

Resources