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 🙏

© 2025 – Pkg Stats / Ryan Hefner

n8n-nodes-extruct

v2.1.0

Published

Extruct AI API Node for n8n

Readme

n8n-nodes-extruct

Extruct AI Banner

n8n community node for Extruct AI

This node lets you enrich and fetch company data from Extruct AI, right inside your n8n workflows. Define your own table structure, add any custom columns, and get exactly the data you need.

Instant preview

Suppose you want to enrich a company by website and get its funding, team size, recent news headline, patent count, and head of HR LinkedIn profile.

{
  "company_name": {
    "value": {
      "answer": "Stripe",
      "source": [
        "https://en.wikipedia.org/wiki/Stripe,_Inc."
      ],
      "explanation": "Full company name as listed on the Stripe Wikipedia page."
    }
  },
  "company_website": {
    "value": {
      "answer": "https://stripe.com/",
      "source": [
        "https://en.wikipedia.org/wiki/Stripe,_Inc.",
        "https://stripe.com"
      ],
      "explanation": "Canonical homepage confirmed on Wikipedia and the stripe.com domain."
    }
  },
  "recent_news_headline": {
    "value": {
      "answer": "Stripe’s first employee, the founder of fintech Increase, sort of bought a bank",
      "source": [
        "https://techcrunch.com/2025/07/03/stripes-first-employee-the-founder-of-fintech-increase-sort-of-bought-a-bank"
      ],
      "explanation": "Headline from a TechCrunch article published July 3, 2025, as the latest news about Stripe."
    }
  },
  "team_size": {
    "value": {
      "answer": "8550",
      "source": [
        "https://techcrunch.com/2025/01/21/stripe-is-laying-off-300-people-but-says-it-still-plans-to-hire-in-2025"
      ],
      "explanation": "About 8,550 employees after a January 2025 layoff of 300 people, per TechCrunch."
    }
  },
  "patent_count": {
    "value": {
      "answer": "247",
      "source": [
        "https://insights.greyb.com/stripe-patents"
      ],
      "explanation": "Total of 247 patents held globally by Stripe, according to GreyB Insights."
    }
  },
  "funding_amount": {
    "value": {
      "answer": "$9.81B",
      "source": [
        "https://tracxn.com/d/companies/stripe/__uahG_IGnVgsUsOG-f8otYHLkOkliWg7YFhJ5ZkNIkpI/funding-and-investors",
        "https://www.crunchbase.com/organization/stripe/company_financials"
      ],
      "explanation": "Raised $9.81 B over 24 rounds, including a $6.87 B round in March 2023, per Tracxn and Crunchbase."
    }
  },
  "head_of_hr_linkedin": {
    "value": {
      "answer": "https://www.linkedin.com/in/maiaj",
      "source": [
        "https://www.comparably.com/companies/stripe/maia-josebachvili",
        "https://www.linkedin.com/in/maiaj"
      ],
      "explanation": "Confirmed as Head of People at Stripe via Comparably and LinkedIn."
    }
  }
}

What is Extruct AI?

Extruct AI is a data enrichment platform that lets you create custom tables with any columns you want, and then enrich them with company data from the web and public sources.

  • Any info you want: Define your own columns — get emails, social links, funding, tech stack, or anything else.
  • No limits: Works for any company, in any country, any industry.
  • Built for automation: Integrate with CRMs, lead gen, analytics, and more.

Features

  • Add a company to your Extruct table and trigger enrichment
  • Poll for enrichment completion automatically
  • Instantly fetch the enriched row with all your custom columns
  • Use in any n8n workflow

Installation

Follow the n8n community nodes documentation for installing custom nodes.

Usage

  1. Create an Extruct table:
    • You can start from a template table or create your own from scratch at Extruct AI.
    • Add any custom columns you need — you have full control over the table structure and fields.
  2. Get your Table ID:
    • After creating the table, copy its Table ID from the Extruct dashboard, or simply grab it from the table page URL.
  3. Use in n8n:
    • In the Extruct node, paste your Table ID.
    • Enter the company name or website you want to enrich:
      • You can type it manually in the node field,
      • Or pass it dynamically from a Form Trigger,
      • Or from any other node in your workflow — just connect it to the Extruct node.
    • Run the workflow — the node will add the company, trigger enrichment, and return the enriched data for your custom columns.

Quick Demo

n8n node demo

Operations

Enrich Company Info

  • Input:
    • Table ID (your Extruct table)
    • Company Input (website or name)
  • Output:
    • Returns a fully enriched row with all your custom columns as clean JSON, ready to use in your n8n workflow.

How it works:

  1. Adds a company to your Extruct table
  2. Triggers enrichment
  3. Waits for completion
  4. Returns the enriched row (with all your custom fields)

Output

The node returns clean JSON with all enriched fields for the company, matching your custom table columns.

Extruct Table Templates

Use these ready-to-go table templates for your n8n workflows:

Open a template, get the Table ID, and use it in your node.

Credentials

  • Extruct API Token
    • Sign up at extruct.ai
    • Get your API token from the dashboard
    • Add it as a credential in n8n

Resources

Compatibility

  • n8n: Tested with n8n v1.100.0