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-ipquery

v0.1.0

Published

n8n community node for ipquery.io: IP geolocation and network data (country, city, ASN, ISP, risk flags) over HTTPS, no API key, with bulk lookups.

Readme

n8n-nodes-ipquery

n8n-nodes-ipquery

An n8n community node for ipquery.io: IP geolocation and network data. No API key, served over HTTPS.

What it returns

ip, isp {asn, org, isp}, location {country, country_code, state, city, zipcode, latitude, longitude, timezone, localtime} and risk {is_mobile, is_vpn, is_tor, is_proxy, is_datacenter, risk_score}.

The risk flags are not dependable for security decisions

Measured on 2026-07-28 against addresses of known nature:

| IP | What it is | ipquery | ip-api | |---|---|---|---| | 185.220.101.1 | known Tor exit relay | is_tor: false, is_proxy: false, risk_score: 0 | proxy: true | | 171.25.193.25 | known Tor exit relay (DFRI) | is_tor: false, is_proxy: false, risk_score: 0 | proxy: true | | 45.33.32.156 | datacenter (Linode) | is_datacenter: true | hosting: true | | 8.8.8.8 | datacenter (Google) | is_datacenter: true | hosting: true |

Use this service for geolocation, ASN/ISP and datacenter detection, where it matched ip-api on all four samples. For reputation (proxy/VPN/Tor) use another source. The node shows this warning in its own UI.

Compared to the free ip-api tier

| | ipquery | ip-api (free) | |---|---|---| | TLS | HTTPS | plain HTTP | | API key | not needed | not needed | | Commercial use | no stated restriction | not allowed | | Bulk | comma separated in the URL (300 verified) | POST /batch, 100 max | | Rate limit | none documented, no headers | 45/min (15/min bulk), 1 hour ban |

Operations

| Operation | Endpoint | |---|---| | Look Up IP | GET /{ip} - IPv4 and IPv6. Domain names are not accepted | | Look Up Many (Bulk) | GET /{ip1,ip2,...} - takes the IP from every input item | | Look Up Own IP | GET /?format=json |

Options: flatten result (flat object instead of the nested shape, easier to compare against other providers), batch size and per-IP cache TTL.

The node is marked usableAsTool, so n8n also exposes an IPQuery Tool variant for AI Agents.

A private IP answers 200, not an error

{"ip":"192.168.1.1","isp":{"asn":"AS0","org":"","isp":""},
 "location":{"country":"","city":"","latitude":0.0165,"longitude":0.0153}}

Empty fields and junk coordinates near (0,0). Left undetected, a workflow believes it geolocated something and ends up pointing at null island. The node adds found: false when the country is empty and the ASN is AS0. A malformed address does return 404 with a plain text body.

Typical use: enriching security alerts

[Trigger] -> [IPQuery: Bulk, Field With the IP = data.srcip] -> [IF geo.isDatacenter] -> [notify]

Results are attached to each item under the geo key, leaving the original payload untouched.

Languages

The node UI ships in English. A Spanish translation is included: set N8N_DEFAULT_LOCALE=es on your n8n instance and the node's labels, descriptions and placeholders switch to Spanish.

Translations live in nodes/IpQuery/translations/<locale>/ipQuery.json. The file name must match the node's name property, which is how n8n resolves it.

Development

npm install
npm run build          # tsc + icons + translations + dist verification
npm run lint
node tools/smoke.mjs   # 8 checks against the live API

npm run build ends with tools/verify-build.mjs, which fails the build if anything declared (nodes, credentials, icons, translations) is missing from dist.

Install (custom folder)

npm run build && npm pack
docker cp n8n-nodes-ipquery-0.1.0.tgz <container>:/tmp/
docker exec -u root <container> sh -c "cd /tmp && tar xzf n8n-nodes-ipquery-0.1.0.tgz \
  && mkdir -p /home/node/.n8n/custom/n8n-nodes-ipquery \
  && cp -r package/package.json package/dist /home/node/.n8n/custom/n8n-nodes-ipquery/ \
  && chown -R node:node /home/node/.n8n/custom"
docker compose restart n8n

Node type: CUSTOM.ipQuery (and CUSTOM.ipQueryTool for agents).

License

MIT.