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-sii-chile

v2.0.0

Published

n8n node for SII Chile integration - Electronic Invoicing, RUT validation, UF/UTM indicators

Readme

n8n-nodes-sii-chile 🇨🇱

Chile Electronic Invoicing for n8n - Issue receipts, invoices and more directly to SII.

SII Chile n8n License

✨ Features

  • Issue real DTEs to SII (Receipts, Invoices, Credit Notes, Debit Notes)
  • RUT Validation - Verify, format, calculate check digit
  • Economic Indicators - UF, UTM, Dollar, Euro, IPC (live data)
  • UF ↔ Pesos Conversion automatic
  • Query status of issued documents
  • Supports OpenFactura and SimpleAPI

🚀 Installation

n8n Cloud / Desktop

  1. Settings → Community Nodes
  2. Search n8n-nodes-sii-chile
  3. Install

Self-hosted

npm install n8n-nodes-sii-chile

⚙️ Configuration

To issue DTEs you need:

| Provider | Free Plan | Link | |----------|-----------|------| | OpenFactura | Yes (limited) | panel.openfactura.cl | | SimpleAPI | Yes (100/month) | simpleapi.cl |

  1. Create an account with one of the providers
  2. Get your API Key
  3. Configure credentials in n8n

For local functions (RUT, Indicators):

No credentials needed - works without configuration.

📖 Usage

Issue Electronic Receipt

// Input
{
  "tipoDte": 39,
  "rutReceptor": "66666666-6",
  "items": [
    { "nombre": "Product 1", "cantidad": 2, "precio": 10000 }
  ]
}

// Output
{
  "success": true,
  "folio": 12345,
  "tipo": 39,
  "tipoNombre": "Receipt",
  "total": 20000,
  "pdf": "https://...",
  "urlAutoservicio": "https://..."
}

Issue Electronic Invoice

{
  "tipoDte": 33,
  "rutReceptor": "76123456-7",
  "razonSocial": "Client Company SpA",
  "giro": "Technology Services",
  "direccion": "Main Ave 123",
  "comuna": "Santiago",
  "items": [
    { "nombre": "Monthly Service", "cantidad": 1, "precio": 100000 }
  ]
}

Validate RUT

// Input: "12.345.678-5"
// Output:
{
  "valid": true,
  "rut": "12.345.678-5",
  "dv": "5",
  "message": "✅ Valid RUT"
}

Get UF

// Output:
{
  "indicator": "UF",
  "value": 38245.76,
  "date": "2024-01-15",
  "unit": "Pesos"
}

Convert UF to Pesos

// Input: 100 UF
// Output:
{
  "uf": 100,
  "pesos": 3824576,
  "valorUf": 38245.76,
  "formatted": "$3,824,576"
}

📋 Supported Document Types

| Code | Document | |------|----------| | 33 | Electronic Invoice | | 34 | Exempt Electronic Invoice | | 39 | Electronic Receipt | | 41 | Exempt Electronic Receipt | | 61 | Electronic Credit Note | | 56 | Electronic Debit Note |

🔧 Available Operations

📄 Issue DTE

  • Issue Receipt
  • Issue Invoice
  • Issue Credit Note
  • Issue Debit Note

🔢 RUT

  • Validate
  • Format (with dots and dash)
  • Clean (remove formatting)
  • Calculate Check Digit
  • Generate valid random RUT

💰 Indicators (live data)

  • Get all indicators
  • UF for today or by date
  • UTM
  • Observed Dollar
  • Euro
  • IPC
  • Convert UF ↔ Pesos

📊 Query DTE

  • Document status
  • Download PDF
  • Download XML

🌐 Supported Providers

OpenFactura (Haulmer)

  • Most used in Chile
  • Simple REST API
  • Certification and Production
  • Documentation

SimpleAPI

💡 Use Cases

  • E-commerce: Automatically issue receipts when order completes
  • SaaS: Generate automatic monthly invoices
  • ERP: Integrate electronic invoicing
  • Validation: Verify customer RUT in forms
  • Quotes: Automatically convert UF prices to pesos

🤝 Contributing

  1. Fork the repository
  2. Create branch: git checkout -b feature/new-feature
  3. Commit: git commit -am 'Add feature'
  4. Push: git push origin feature/new-feature
  5. Pull Request

📄 License

MIT License - see LICENSE

👨‍💻 Author

Manu - LatamFlows

Automation for LATAM 🚀


Need a custom integration? Contact me for custom node development.