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

v0.2.2

Published

Official n8n Airparser node. Use Airparser in n8n to extract structured data from emails, PDFs, images, and other documents, then route the extracted data anywhere in your automation.

Readme

Airparser n8n Node

🧩 Official n8n Node to interact with Airparser: import documents and extract structured data from emails, PDFs, images, and other documents.

About
Operations
Credentials
Usage
Resources

About

Airparser is a powerful document parsing service that extracts structured data from emails, PDFs, images, and other documents using AI and machine learning.

This official n8n Node allows you to:

✅ Import documents into Airparser for parsing
✅ Automatically trigger workflows when documents are parsed
✅ Extract structured data and use it in your automation workflows

Operations

Airparser Actions

  • Import Document From File

    • Use when you have a binary file (PDF, image, email attachment, etc.)
    • Example: Send files uploaded to a Google Drive folder to Airparser for data extraction
    • Automatically extracts structured data from the document
  • Import Text/HTML Document

    • Use when you have HTML pages, email content, or plain text
    • Example: Parse HTML from a website or email body content
    • Perfect for extracting data from web pages or text-based content

Airparser Trigger

  • Document Parsed
    • Automatically starts your workflow when a document is parsed in Airparser
    • Receives the extracted data and passes it to the next node
    • Built-in security to protect your webhook

Credentials

Airparser API Key

  1. Sign in to your Airparser account
  2. Go to your account settings
  3. Copy your API Key

In n8n:

  • Click "Add Credential" and search for "Airparser API"
  • Paste your API Key

For more information, visit the Airparser documentation.

Usage

Airparser Trigger

Quick Start:

  1. Add the Airparser Trigger node to your workflow
  2. Select "Document processed" as the event
  3. Choose the Inbox where you want to receive events
  4. Activate your workflow

That's it! Your workflow will now automatically run whenever a document is parsed in the selected inbox.

What happens:

  • When a document is parsed in your Airparser inbox, the trigger receives the extracted data
  • The data is automatically passed to the next node in your workflow
  • You can use this data in any n8n node (send emails, update databases, create records, etc.)

Example Use Cases:

  • Email Notifications: Send an email notification when an invoice is parsed
  • Data Logging: Save parsed data to Google Sheets or Airtable
  • CRM Updates: Create or update records in your CRM when documents are processed
  • Approval Workflows: Route documents for approval based on parsed data

Import Document From File

  1. Select the Import Document From File operation
  2. Choose an Inbox from the dropdown
  3. Enter the Document File (Binary) property name (usually "data")
  4. Optionally add a custom Filename or Additional Metadata

Example workflow:

  • Read a PDF file → Airparser node → Extract data → Use in next steps

Import Text/HTML Document

  1. Select the Import Text/HTML Document operation
  2. Choose an Inbox from the dropdown
  3. Enter the HTML/Text Content (paste directly or use an expression)
  4. Optionally add a custom Filename or Additional Metadata

Example workflow:

  • Fetch HTML from a website → Airparser node → Extract data → Process results

Resources