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

v1.1.0

Published

An n8n community node for AI-powered document processing via the DocuProx API. Extract structured data from documents using manual or AI-generated prompts — no template required. Supports real-time processing and high-volume batch jobs.

Readme

n8n-nodes-docuprox

npm version License: MIT n8n community node

An n8n community node for AI-powered document processing and data extraction via the DocuProx API. Extract structured data from documents using manual or AI-generated prompts — no template required.

Automate document data extraction in your n8n workflows. Supports invoices, passports, ID cards, receipts, contracts, and more.

What is DocuProx?

DocuProx is an AI-powered document extraction platform. This n8n node lets you integrate DocuProx directly into your automation workflows — extract structured fields from any document image in real-time or process thousands of documents via batch jobs.

Features

  • AI Agent Extraction — Extract any field using natural language prompts. No dashboard template needed.
  • Template-Based Extraction — Use a pre-built Template ID (UUID) from your DocuProx dashboard for consistent, structured extraction.
  • Batch Processing — Submit a ZIP of documents for high-volume background processing and retrieve results in JSON or CSV.
  • Flexible Input — Supports binary file uploads and Base64 encoded images.
  • Real-Time Results — Synchronous processing returns structured data immediately.

Supported Document Types

Works with any document type, including:

  • Passports & ID Cards
  • Invoices & Receipts
  • Contracts & Agreements
  • Bank Statements
  • Medical Records
  • Custom document types via AI prompts

Installation

Via n8n Community Nodes (Recommended)

  1. Open your n8n instance
  2. Go to Settings → Community Nodes
  3. Search for n8n-nodes-docuprox
  4. Click Install
  5. Restart n8n

Manual Installation

npm install n8n-nodes-docuprox

Credentials Setup

  1. Go to Settings → Credentials in your n8n instance
  2. Create a new credential of type DocuProx API
  3. Enter your DocuProx API key
  4. Save the credential

Usage

Document → Process Agent (AI extraction, no template needed)

Use natural language prompts to extract any field from a document without creating a dashboard template.

  1. Select Resource: Document
  2. Select Operation: Process Agent
  3. Choose Selection Method: Structured Form
  4. Set Document Type (e.g. passport, invoice)
  5. Add Prompts — define fields to extract:
    • Key: passport_number → Instruction: Extract the passport number
    • Key: full_name → Instruction: Extract the full name
  6. Upload your document image

Document → Process (Template-based extraction)

Use a Template ID (UUID) from your DocuProx dashboard for structured extraction.

  1. Select Resource: Document
  2. Select Operation: Process
  3. Enter your Template ID (UUID)
  4. Upload your document image

Job → Batch Processing

Submit a ZIP file containing multiple documents for high-volume background processing.

  1. Submit Job — Upload ZIP + Template ID → returns a Job ID
  2. Get Job Status — Poll with Job ID until status is SUCCESS
  3. Get Job Results — Retrieve extracted data in JSON or CSV format

Node Properties

Document → Process | Field | Required | Description | |---|---|---| | Template ID | Yes | UUID from your DocuProx dashboard | | Image Source | Yes | Binary file upload or Base64 string | | Static Values | No | Additional key-value metadata |

Document → Process Agent | Field | Required | Description | |---|---|---| | Selection Method | Yes | Structured Form or Manual JSON | | Document Type | Yes | e.g. passport, invoice, receipt | | Custom Instructions | No | Natural language guidance for the AI | | Prompts | Yes | Field name + extraction instruction pairs | | Static Values | No | Additional key-value metadata |

Job → Submit Job | Field | Required | Description | |---|---|---| | Template ID | Yes | UUID from your DocuProx dashboard | | Binary Property Name | Yes | Property containing the ZIP file | | Static Values | No | Additional key-value metadata |

Job → Get Job Status / Get Job Results | Field | Required | Description | |---|---|---| | Job ID | Yes | UUID returned from Submit Job | | Result Format | No | json (default) or csv |

Job Status Values

| Status | Description | |---|---| | NEW | Job created and queued for processing | | UNZIP FILE | Extracting files from the uploaded ZIP archive | | UNZIP FILE SUCCESS | ZIP extraction completed successfully | | UNZIP FILE FAILED | ZIP extraction failed | | PROCESS IMAGE | Processing document images for data extraction | | PROCESS IMAGE SUCCESS | Image processing completed successfully | | PROCESS IMAGE FAILED | Image processing failed | | SUCCESS | Job completed — results are ready to retrieve | | FAILED | Job processing failed |

API Reference

Input

| Operation | Key Inputs | |---|---| | Process | Template ID (UUID), Image (binary or Base64), Static Values (optional) | | Process Agent | Document Type, Custom Instructions, Prompts (key-value), Image | | Submit Job | Template ID (UUID), ZIP file (binary), Static Values (optional) | | Get Job Status | Job ID (UUID) | | Get Job Results | Job ID (UUID), Result Format (JSON or CSV) |

Output

| Operation | Output Fields | |---|---| | Process | success, templateId, response, timestamp | | Process Agent | success, response, timestamp | | Submit Job | success, templateId, response, timestamp | | Get Job Status | success, jobId, response, timestamp | | Get Job Results | success, jobId, resultFormat, total_records, results / results_csv |

Error Handling

The node includes built-in error handling. Enable Continue on Fail in the node settings to handle errors gracefully within your workflow.

Resources

Development

npm install       # Install dependencies
npm run build     # Build TypeScript
npm run dev       # Watch mode

Project Structure

├── credentials/
│   └── DocuProxApi.credentials.ts    # API credentials definition
├── nodes/
│   └── DocuProx/
│       ├── DocuProx.node.ts          # Main node implementation
│       └── douprox-logo.svg          # Node icon
├── dist/                             # Built files
├── package.json
└── README.md

Release & npm Publish

  1. Add NPM_TOKEN to GitHub repository secrets
  2. Bump version in package.json
  3. Push a tag in vX.Y.Z format (e.g. v1.1.0)
  4. GitHub Actions will build and run npm publish --provenance

License

This project is licensed under the MIT License - see the LICENSE file for details.