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

@rubenlangeweg/n8n-nodes-incidentio

v0.4.0

Published

n8n node for incident.io API integration

Readme

n8n-nodes-incidentio

This is an n8n community node that lets you use incident.io in your n8n workflows.

incident.io is an incident management platform that helps teams respond to and learn from incidents. This node provides access to the incident.io API, allowing you to automate incident management, on-call scheduling, and catalog operations.

n8n is a fair-code licensed workflow automation platform.

Installation

Follow the installation guide in the n8n community nodes documentation.

Local Development & Testing

  1. Clone this repository
  2. Install dependencies:
    npm install
  3. Build the node:
    npm run build
  4. Link the node to your local n8n installation:
    npm link
    cd ~/.n8n/nodes
    npm link n8n-nodes-incidentio
  5. Restart n8n

Install in n8n

For production use:

npm install n8n-nodes-incidentio

Or install via the n8n UI:

  1. Go to Settings > Community Nodes
  2. Select Install
  3. Enter n8n-nodes-incidentio and click Install

Credentials

To use this node, you need an incident.io API key:

  1. Go to your incident.io dashboard
  2. Navigate to Settings > API Keys
  3. Click Create API Key
  4. Choose appropriate permissions for the key
  5. Copy the API key (you'll only see it once!)
  6. In n8n, add new credentials for "incident.io API"
  7. Paste your API key

Operations

This node supports the following resources and operations:

Incident

  • List: Get a list of all incidents with filtering options
  • Get: Get a single incident by ID
  • Create: Create a new incident
  • Update: Update an existing incident

Severity

  • List: List all severity levels
  • Get: Get a single severity by ID

Status

  • List: List all incident statuses
  • Get: Get a single status by ID

Type

  • List: List all incident types
  • Get: Get a single type by ID

Custom Field

  • List: List all custom fields
  • Get: Get a single custom field by ID

Schedule

  • List: List all on-call schedules
  • Get: Get a single schedule by ID

Schedule Entry

  • List: Get schedule entries (who's on-call and when)

Escalation

  • List: List all escalations
  • Get: Get a single escalation by ID

Catalog Type

  • List: List all catalog types
  • Get: Get a single catalog type by ID

Catalog Entry

  • List: List entries for a catalog type
  • Get: Get a single catalog entry by ID

Action

  • List: List all incident actions
  • Get: Get a single action by ID

Follow-Up

  • List: List all follow-ups
  • Get: Get a single follow-up by ID

Example Workflows

List Recent Incidents

  1. Add incident.io node
  2. Select Incident resource
  3. Select List operation
  4. Configure filters (optional)

Create an Incident

  1. Add incident.io node
  2. Select Incident resource
  3. Select Create operation
  4. Fill required fields:
    • Idempotency Key: Unique identifier (e.g., use {{$json.id}} from previous node)
    • Visibility: Public or Private
  5. Add optional fields:
    • Name, Summary, Severity ID, Status ID, Type ID, Mode

Get Who's On-Call

  1. Add incident.io node to get schedules
  2. Select Schedule resource
  3. Select List operation
  4. Add another incident.io node
  5. Select Schedule Entry resource
  6. Select List operation
  7. Set Schedule ID from previous node

Check Catalog Entries

  1. Add incident.io node
  2. Select Catalog Type resource
  3. Select List operation to get available types
  4. Add another incident.io node
  5. Select Catalog Entry resource
  6. Select List operation
  7. Set Catalog Type ID from previous node

Rate Limits

The incident.io API has the following rate limits:

  • Default: 1200 requests/minute per API key
  • Some endpoints: Lower limits for third-party integrations

When you exceed a rate limit, the API returns a 429 Too Many Requests response. Implement exponential backoff in your workflows for best results.

API Version

This node uses the following API versions:

  • Incidents, Actions, Follow-ups, Schedules, Escalations: v2
  • Severities, Statuses, Types: v1
  • Catalog: v3 (latest)

Resources

Development

Project Structure

n8n-nodes-incidentio/
├── credentials/
│   └── IncidentIoApi.credentials.ts
├── nodes/
│   └── IncidentIo/
│       ├── IncidentIo.node.ts
│       └── incidentio.svg
├── package.json
├── tsconfig.json
└── README.md

Build

npm run build

Format

npm run format

Lint

npm run lint
npm run lintfix  # Auto-fix issues

Roadmap

Phase 2: Webhook Trigger (Coming Soon)

  • Receive webhook events from incident.io
  • Support for incident.created, incident.updated, and other events
  • HMAC signature verification for security

License

MIT

Support

For issues and questions: