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

v1.0.0

Published

n8n nodes for Nido - Property Management Platform API

Downloads

180

Readme

n8n-nodes-nido

Nido Logo

Official n8n community node for Nido - The modern property management platform for residential buildings and condominiums.

Automate your building management workflows by connecting Nido to 400+ apps in n8n!

npm version License: MIT

Features

  • Full API Coverage: Access all Nido resources (buildings, residents, posts, events, incidents, bookings, and more)
  • Real-time Triggers: React to 30+ webhook events in real-time
  • Easy Authentication: Simple API key authentication
  • Pagination Support: Automatically handle large datasets
  • Multi-environment: Connect to production, development, or self-hosted instances

Installation

Community Nodes (Recommended)

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

Manual Installation

npm install n8n-nodes-nido

Credentials

  1. Go to your Nido dashboard
  2. Navigate to Admin > API Keys
  3. Create a new API key (requires Professional or Enterprise plan)
  4. Copy the key and add it to n8n credentials

Available Resources

Nido Node

| Resource | Operations | |----------|------------| | Organization | Get | | Building | Get, Get Many | | Resident | Get, Get Many | | Channel | Get, Get Many | | Message | Create, Get, Get Many | | Post | Create, Get, Get Many, Update, Delete | | Event | Create, Get, Get Many, Update, Delete | | Poll | Get, Get Many, Get Results | | Incident | Create, Get, Get Many, Update | | Asset | Get, Get Many | | Booking | Create, Get, Get Many, Update, Delete | | Classified | Create, Get, Get Many, Update, Delete | | Document | Get, Get Many | | Notification | Get, Get Many, Mark Read, Mark All Read, Delete | | Council Project | Create, Get, Get Many, Update | | Council Vote | Get, Get Many | | Council Meeting | Create, Get, Get Many, Update | | Council Task | Create, Get, Get Many, Update |

Nido Trigger Node

React to events in real-time:

Incidents

  • incident.created - New incident reported
  • incident.updated - Incident updated
  • incident.resolved - Incident resolved

Posts & Communication

  • post.created - New post published
  • post.updated - Post updated
  • post.emergency - Emergency post created
  • message.created - New message in channel

Events

  • event.created - New event created
  • event.registration - Event registration
  • event.cancelled - Event cancelled

Residents

  • resident.joined - New resident joined
  • resident.approved - Resident approved

Bookings

  • booking.created - New booking made
  • booking.confirmed - Booking confirmed
  • booking.cancelled - Booking cancelled

Polls

  • poll.created - New poll created
  • poll.closed - Poll closed
  • poll.vote - Vote cast

Council

  • council.project.created - New project
  • council.project.status_changed - Project status changed
  • council.vote.started - Council vote started
  • council.vote.closed - Council vote closed
  • council.meeting.scheduled - Meeting scheduled
  • council.task.assigned - Task assigned
  • council.task.completed - Task completed

Other

  • classified.created - New classified ad
  • classified.sold - Item sold
  • document.created - Document uploaded
  • package.received - Package received
  • package.picked_up - Package picked up
  • security.alert - Security alert

Example Workflows

1. Slack Notification for Urgent Incidents

[Nido Trigger: incident.created]
    -> [IF: priority = "urgent"]
    -> [Slack: Send Message to #urgences]

Use case: Alert building managers immediately when urgent incidents are reported.

2. Google Calendar Sync for Events

[Nido Trigger: event.created]
    -> [Google Calendar: Create Event]
    -> [Nido: Update Event with calendar link]

Use case: Automatically create Google Calendar events for building activities.

3. Email Digest of Weekly Posts

[Schedule: Every Monday 9am]
    -> [Nido: Get Many Posts (last 7 days)]
    -> [HTML: Generate digest template]
    -> [SendGrid: Send email to residents]

Use case: Send a weekly summary of building news to all residents.

4. Jira Integration for Incidents

[Nido Trigger: incident.created]
    -> [Jira: Create Issue]
    -> [Nido: Update Incident with Jira link]

Use case: Track building incidents in your property management Jira board.

5. Twilio SMS for Emergency Posts

[Nido Trigger: post.emergency]
    -> [Nido: Get Many Residents]
    -> [Loop]
        -> [Twilio: Send SMS]

Use case: Send SMS alerts to all residents for emergency announcements.

6. Airtable Database Sync

[Schedule: Every hour]
    -> [Nido: Get Many Incidents (status=open)]
    -> [Airtable: Upsert Records]

Use case: Maintain an Airtable dashboard of open incidents.

7. Automated Booking Confirmation

[Nido Trigger: booking.created]
    -> [Nido: Get Resident]
    -> [SendGrid: Send confirmation email]
    -> [Google Calendar: Block time slot]

Use case: Send confirmation emails and sync bookings to calendars.

8. Council Meeting Minutes to Notion

[Nido Trigger: council.meeting.completed]
    -> [Nido: Get Council Meeting]
    -> [Notion: Create Page with minutes]
    -> [Slack: Notify #conseil]

Use case: Automatically archive meeting minutes in Notion.

9. Resident Onboarding Workflow

[Nido Trigger: resident.approved]
    -> [SendGrid: Send welcome email]
    -> [Slack: Notify #accueil]
    -> [Notion: Add to resident directory]
    -> [Mailchimp: Add to newsletter]

Use case: Automate the onboarding process for new residents.

10. Package Notification System

[Nido Trigger: package.received]
    -> [Nido: Get Resident]
    -> [Twilio: Send SMS]
    -> [Wait: 24 hours]
    -> [IF: not picked up]
        -> [SendGrid: Send reminder email]

Use case: Notify residents of packages and send reminders.

Rate Limits

  • Professional Plan: 1,000 requests/hour
  • Enterprise Plan: 10,000 requests/hour

Rate limit info is included in response headers:

  • X-RateLimit-Limit: Your limit
  • X-RateLimit-Remaining: Remaining requests
  • Retry-After: Seconds until reset (when limited)

Support

License

MIT License - see LICENSE for details.


Made with love by the Nido team