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

v0.1.1

Published

n8n community node for InPost ShipX - Polish parcel delivery and Paczkomaty

Readme

n8n-nodes-inpost

npm

n8n community node for InPost ShipX -- Poland's leading parcel delivery service with Paczkomaty parcel lockers. Manage shipments, download labels, track packages, and find parcel locker points directly from your n8n workflows.

Operations

| Resource | Operation | Description | | --------- | --------- | ------------------------------------------------- | | Shipment | Create | Create a new shipment (locker or courier) | | Shipment | Get | Get shipment details by ID | | Shipment | Get Many | List shipments with pagination | | Shipment | Cancel | Cancel a shipment | | Shipment | Get Label | Download shipping label as PDF (A4/A6) | | Point | Get | Get parcel locker point details | | Point | Get Many | List and filter Paczkomaty points | | Tracking | Get | Track shipment by tracking number |

Credentials

This node requires three credential fields:

  • API Token: Bearer token from InPost Manager Panel
  • Organization ID: Numeric organization ID from InPost Manager Panel
  • Environment: Sandbox or Production toggle

Setup

  1. Log in to InPost Manager Panel
  2. Navigate to API section to obtain your API token
  3. Note your Organization ID from the account settings
  4. In n8n, create a new InPost ShipX API credential
  5. Paste the token, enter the Organization ID, and select the environment

Note: Sandbox uses sandbox-api-shipx-pl.easypack24.net, Production uses api-shipx-pl.easypack24.net.

Installation

Community Nodes (recommended)

  1. Go to Settings > Community Nodes in your n8n instance
  2. Select Install a community node
  3. Enter n8n-nodes-inpost and click Install

Manual installation

cd ~/.n8n/custom
npm install n8n-nodes-inpost

Restart n8n after installation.

Compatibility

  • Tested with n8n 1.x
  • Requires n8n-workflow peer dependency

Rate Limits

InPost ShipX API allows 100 requests per minute.

This node does not implement automatic retry. If you hit rate limits, add a Wait node between operations or reduce batch sizes in your workflow.

Usage

Create a Shipment

  1. Select Shipment resource and Create operation
  2. Choose the service type (Locker Standard, Courier Standard, etc.)
  3. For locker services, enter the Target Point code (e.g., KRA010)
  4. Fill in receiver details (name, phone, email)
  5. Add parcel details (template size or custom dimensions, weight)
  6. Optionally add COD amount, insurance, or reference

Get Label

The Get Label operation returns the shipping label as binary PDF data. You can connect it to a Write Binary File node or send it as an email attachment. Choose between A4 (normal) and A6 label formats.

Example Workflow

Below is a minimal workflow that creates a locker shipment:

{
  "nodes": [
    {
      "parameters": {
        "resource": "shipment",
        "operation": "create",
        "service": "inpost_locker_standard",
        "targetPoint": "KRA010",
        "receiver": {
          "receiverDetails": {
            "name": "Jan Kowalski",
            "email": "[email protected]",
            "phone": "500600700"
          }
        },
        "parcels": {
          "parcelValues": [
            {
              "template": "small",
              "weight": 2
            }
          ]
        },
        "additionalFields": {}
      },
      "name": "Create InPost Shipment",
      "type": "n8n-nodes-inpost.inpost",
      "typeVersion": 1,
      "position": [450, 300]
    }
  ]
}

Resources

License

MIT

Author

Michal Ploneczka ([email protected])