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

@handelsregister/n8n-nodes-handelsregister-ai

v0.2.1

Published

n8n community node for Handelsregister.ai API integration

Readme

@handelsregister/n8n-nodes-handelsregister-ai

This is an n8n community node that allows you to interact with the Handelsregister.ai API to query German business registry data.

Installation

Community Node

  1. In n8n, go to Settings > Community Nodes
  2. Click Install
  3. Enter @handelsregister/n8n-nodes-handelsregister-ai
  4. Click Install

Manual Installation

npm install @handelsregister/n8n-nodes-handelsregister-ai

Features

  • Fetch Organization: Get comprehensive information about a German company including financial data, related persons, and publications
  • Search Organizations: Search German companies with filters and pagination
  • Fetch Document: Download official PDF documents from the German business registry

Setup

  1. Get your API key from Handelsregister.ai
  2. In n8n, add credentials:
    • Go to Credentials > New
    • Select Handelsregister.ai API
    • Enter your API key
    • Save the credentials

Usage

Fetch Organization

Get comprehensive information about a German company:

  • Query: Company name, registration number or search query (e.g., "Konux GmbH aus München")
  • Features: Select additional data to include:
    • Financial KPI (1 Credit)
    • Balance Sheet Accounts (3 Credits)
    • Profit and Loss Account (3 Credits)
    • Related Persons (2 Credits)
    • Shareholders (5 Credits)
    • Publications (1 Credit)
    • News (10 Credits)
    • Insolvency Publications (1 Credit)
    • Annual Financial Statements (5 Credits)
    • Website Content (0 Credits - requires AI Mode to be enabled)
  • AI Mode: Enable AI-powered search for better results (enabled by default)

Search Organizations

Search German companies with filters and pagination:

  • Query: Search query (minimum 2 characters, e.g., "Konux")
  • Additional Fields:
    • Skip: Number of results to skip
    • Limit: Results per page (1-100)
    • Postal Code Filter: Filter by postal code

Fetch Document

Download official PDF documents from the German business registry:

  • Company ID: Unique company entity ID from search results
  • Document Type:
    • Shareholders List
    • Current Extract (AD)
    • Historical Extract (CD)

Example Workflows

Fetch Organization with Features

{
  "nodes": [
    {
      "parameters": {
        "operation": "fetchOrganization",
        "q": "Konux GmbH aus München",
        "features": ["financial_kpi", "related_persons"],
        "ai_search": true
      },
      "name": "handelsregister.ai",
      "type": "@handelsregister/n8n-nodes-handelsregister-ai.handelsregisterAi",
      "typeVersion": 1,
      "position": [250, 300]
    }
  ]
}

Search Organizations with Filters

{
  "nodes": [
    {
      "parameters": {
        "operation": "searchOrganizations",
        "q": "tech",
        "additionalFields": {
          "limit": 20,
          "postal_code": "80331"
        }
      },
      "name": "Search Organizations",
      "type": "@handelsregister/n8n-nodes-handelsregister-ai.handelsregisterAi",
      "typeVersion": 1,
      "position": [250, 300]
    }
  ]
}

Fetch Document Workflow

{
  "nodes": [
    {
      "parameters": {
        "operation": "fetchDocument",
        "company_id": "{{ $json.entity_id }}",
        "document_type": "shareholders_list"
      },
      "name": "Fetch Document",
      "type": "@handelsregister/n8n-nodes-handelsregister-ai.handelsregisterAi",
      "typeVersion": 1,
      "position": [450, 300]
    }
  ]
}

Batch Company Processing

Use this workflow to process multiple companies from a spreadsheet or database:

  1. Spreadsheet/Database Node → Read company names
  2. handelsregister.ai Node → Use searchOrganizations to find companies
  3. Filter Node → Filter results based on criteria
  4. handelsregister.ai Node → Use fetchOrganization to get detailed data
  5. Output Node → Save results to database or file

Development

# Install dependencies
npm install

# Build the node
npm run build

# Run in development mode
npm run dev

License

MIT

Support

For issues and feature requests, please visit the GitHub repository.