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

@catalogicus-international/n8n-nodes-da-data

v0.3.0

Published

n8n community node for selected DaData APIs

Readme

@catalogicus-international/n8n-nodes-da-data

Community nodes for selected DaData APIs.

Nodes

DaData

Use DaData in standard n8n workflows. It has normal workflow inputs and outputs and does not require an AI Agent.

The currently supported operation is PartyFind by INN or OGRN. Configure the INN, INN/KPP, or OGRN in Query, or leave Query empty to read the request body from the current input item:

{
  "query": "7707083893",
  "count": 1,
  "branch_type": "MAIN",
  "type": "LEGAL",
  "status": ["ACTIVE"]
}

Existing workflow behavior is preserved: by default, each DaData suggestion becomes one output item. Enable Return Full Response to return the complete response.

DaData Tool

Use DaData Tool only as a tool connected to an n8n AI Agent. The agent supplies one structured object through the request argument.

For the standard party lookup, action is the DaData endpoint action and resource is the endpoint resource:

{
  "action": "findById",
  "resource": "party",
  "body": {
    "query": "7707083893",
    "count": 1
  }
}

For a generic HTTP request, use an HTTP method as action and put the complete relative endpoint path in resource:

{
  "action": "GET",
  "resource": "some/endpoint",
  "queryParameters": {
    "status": "ACTIVE"
  },
  "pagination": {
    "enabled": true,
    "pageParameter": "page",
    "pageSizeParameter": "count",
    "page": 1,
    "pageSize": 100,
    "maxPages": 10,
    "itemsPath": "suggestions"
  }
}

Pagination is applied to GET requests. itemsPath is an optional dot-separated path to the result array. Pagination stops when a page contains fewer items than pageSize or when maxPages is reached.

Query parameters

The normal node shows the universal Query Parameters field and structured Query Parameters (Fields) at the same time. The Tool node accepts the same data in request.queryParameters (aliases: parameters and query).

The universal value supports:

  • an object or expression result;
  • a JSON string, including JSON serialized as a string multiple times;
  • objects with unquoted keys, such as { status: "ACTIVE", count: 10 };
  • shorthand, such as status=ACTIVE&count=10 or status:ACTIVE,count:10.

After parsing, the value must be an object. Arrays and primitive values produce a clear validation error. Parameters with null, undefined, or an empty string are removed.

Structured UI parameters are merged with the universal value. A non-empty UI value has priority; an empty UI value does not overwrite a value from the universal field.

Credentials

Create an API token in DaData and add it to the DaData API credential. The default base URL is:

https://suggestions.dadata.ru/suggestions/api/4_1/rs

Development

pnpm install
pnpm run lint
pnpm test

Resources

License

MIT