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-better-stack

v1.0.0

Published

n8n community nodes for Better Stack Uptime API integration

Downloads

5

Readme

  ____       _   _              ____  _             _
 | __ )  ___| |_| |_ ___ _ __  / ___|| |_ __ _  ___| | __
 |  _ \ / _ \ __| __/ _ \ '__| \___ \| __/ _` |/ __| |/ /
 | |_) |  __/ |_| ||  __/ |     ___) | || (_| | (__|   <
 |____/ \___|\__|\__\___|_|    |____/ \__\__,_|\___|_|\_\

n8n-nodes-better-stack

npm version License: MIT n8n Community Node Better Stack

n8n community nodes for Better Stack Uptime API integration

Installation | Configuration | Nodes | Features | Examples


Overview

This package provides comprehensive n8n nodes for interacting with the Better Stack Uptime API. Monitor your infrastructure, manage incidents, and automate your uptime workflows directly from n8n.

Features

| Feature | Description | |---------|-------------| | 8 Nodes | Monitor, Heartbeat, Incident, Status Page, Monitor Group, Heartbeat Group, Metadata, Trigger | | Webhook Trigger | Real-time event notifications | | AI Tool Ready | All nodes can be used as AI tools | | Pagination | Automatic pagination for large datasets | | Resource Locator | Searchable dropdowns for easy resource selection |

Installation

  1. Open your n8n instance
  2. Go to Settings > Community Nodes
  3. Click Install a community node
  4. Enter n8n-nodes-better-stack
  5. Click Install

Configuration

Getting Your API Token

  1. Log in to your Better Stack account
  2. Navigate to Settings > API tokens
  3. Create a new API token (Global or Uptime-specific)
  4. Copy the token

Setting Up Credentials in n8n

  1. In n8n, go to Credentials
  2. Click Add Credential
  3. Search for Better Stack API
  4. Paste your API token
  5. Save the credential

Nodes

Better Stack Monitor

Manage uptime monitors for websites, APIs, and services.

| Operation | Description | |-----------|-------------| | Get Many | List all monitors with optional filters | | Get | Get a specific monitor by ID | | Create | Create a new monitor | | Update | Update an existing monitor | | Delete | Delete a monitor | | Get Response Times | Get response time statistics | | Get Availability | Get availability data for a date range |

Monitor Types: HTTP, Keyword, Heartbeat, TCP, UDP, SMTP, POP3, IMAP


Better Stack Heartbeat

Manage cron job and scheduled task monitoring.

| Operation | Description | |-----------|-------------| | Get Many | List all heartbeats | | Get | Get a specific heartbeat by ID | | Create | Create a new heartbeat | | Update | Update an existing heartbeat | | Delete | Delete a heartbeat | | Get Availability | Get availability data for a date range |


Better Stack Incident

Manage and respond to incidents.

| Operation | Description | |-----------|-------------| | Get Many | List all incidents with filters | | Get | Get a specific incident | | Create | Create a new incident | | Delete | Delete an incident | | Acknowledge | Acknowledge an incident | | Resolve | Resolve an incident | | Escalate | Escalate an incident | | Get Timeline | Get incident timeline events | | Get Comments | List all comments on an incident | | Get Comment | Get a specific comment | | Create Comment | Add a comment to an incident | | Update Comment | Update an existing comment | | Delete Comment | Delete a comment |


Better Stack Status Page

Manage public status pages for your services.

| Operation | Description | |-----------|-------------| | Get Many | List all status pages | | Get | Get a specific status page | | Create | Create a new status page | | Update | Update a status page | | Delete | Delete a status page | | Get Many Resources | List resources on a status page | | Get Resource | Get a specific resource | | Create Resource | Add a resource to a status page | | Update Resource | Update a resource | | Delete Resource | Remove a resource from a status page |


Better Stack Monitor Group

Organize monitors into logical groups.

| Operation | Description | |-----------|-------------| | Get Many | List all monitor groups | | Get | Get a specific group | | Create | Create a new group | | Update | Update a group | | Delete | Delete a group | | Get Monitors | List monitors in a group |


Better Stack Heartbeat Group

Organize heartbeats into logical groups.

| Operation | Description | |-----------|-------------| | Get Many | List all heartbeat groups | | Get | Get a specific group | | Create | Create a new group | | Update | Update a group | | Delete | Delete a group | | Get Heartbeats | List heartbeats in a group |


Better Stack Metadata

Manage custom metadata on resources.

| Operation | Description | |-----------|-------------| | Get Many | List all metadata with filters | | Upsert | Create or update metadata on a resource |


Better Stack Trigger

Receive webhook events from Better Stack.

| Event | Description | |-------|-------------| | All Events | Trigger on any event | | Incident Created | When a new incident is created | | Incident Acknowledged | When an incident is acknowledged | | Incident Resolved | When an incident is resolved | | Monitor Down | When a monitor goes down | | Monitor Up | When a monitor comes back up |

Setup: Copy the webhook URL from n8n and paste it in Better Stack under Integrations > Custom Webhook.

Output Example

{
  "id": "123456",
  "type": "monitor",
  "url": "https://example.com",
  "pronounceable_name": "Example Website",
  "monitor_type": "status",
  "status": "up",
  "last_checked_at": "2024-01-15T10:30:00Z",
  "check_frequency": 180,
  "availability": 99.95
}

Requirements

  • n8n version 1.0.0 or higher
  • Node.js 18.0.0 or higher
  • Better Stack account with API access

Contributing

Contributions are welcome! Please feel free to submit issues and pull requests.

# Clone the repository
git clone https://github.com/ThomasTartrau/n8n-nodes-better-stack.git

# Install dependencies
npm install

# Build
npm run build

# Run tests
npm test

# Lint
npm run lint

Project Structure

n8n-nodes-better-stack/
├── credentials/
│   └── BetterStackApi.credentials.ts
├── nodes/
│   ├── BetterStackMonitor/
│   ├── BetterStackHeartbeat/
│   ├── BetterStackIncident/
│   ├── BetterStackStatusPage/
│   ├── BetterStackMonitorGroup/
│   ├── BetterStackHeartbeatGroup/
│   ├── BetterStackMetadata/
│   ├── BetterStackTrigger/
│   └── shared/
│       ├── interfaces/
│       ├── transport/
│       └── utils/
├── icons/
│   └── betterstack.svg
└── package.json

License

MIT


Better Stack | n8n | Documentation

Made with :heart: by Thomas Tartrau