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

v0.1.4

Published

n8n community node for the EstateSync API: distribute real estate listings to German marketplaces (Immobilienscout24, Immowelt, Kleinanzeigen).

Readme


A community node for n8n that integrates with the EstateSync API. EstateSync distributes real-estate listings to major German marketplaces (Immobilienscout24, Immowelt, Kleinanzeigen) — send your data once and publish on every platform.

API Coverage

The package ships two nodes covering the EstateSync REST API and webhook subscriptions:

  • EstateSync: action node covering all CRUD operations across 7 resources
  • EstateSync Trigger: webhook-based trigger that auto-registers a subscription with EstateSync and emits incoming events

| Resource | Operations | | --- | --- | | Account | Get, Set Immobilienscout24 Credentials, Set Immobilienscout24 Sandbox Credentials | | Contact | Create, Delete, Get, List, Update | | Listing | Create, Delete, Get, List, Update | | Property | Create, Delete, Get, List, Update | | Request | Create, Get, List | | Target | Create, Delete, Get, List, Update | | Webhook | Create, Delete, List, Update |

| Event | Type | | --- | --- | | Property Processing Succeeded | Webhook | | Property Processing Failed | Webhook | | Publication Succeeded | Webhook | | Publication Failed | Webhook | | Request Created | Webhook | | Request Parsing Failed | Webhook |

Installation

  1. Create a new workflow or open an existing one
  2. Open the nodes panel by selecting + or pressing N
  3. Search for EstateSync
  4. Select Install to install the node for your instance

Alternatively, follow the community node installation guide and install n8n-nodes-estatesync.

Credentials

  1. Sign up at EstateSync
  2. Manage and copy keys from the EstateSync dashboard
  3. In n8n, go to Credentials > Add credential
  4. Search for EstateSync API and paste your token

Every request is authenticated with Authorization: Bearer <key>. The credential's "Test" button hits GET /account to verify the key.

Resources & Operations

See the collapsible tables above under API Coverage for a full list.

List pagination

List endpoints (Contact, Listing, Property, Request, Webhook) accept Limit (1–100, default 10) and Start After (cursor — pass the ID of the last item from the previous page). Targets are returned as a non-paginated array.

Property and Target bodies

The property-new and target-new schemas are discriminated unions (one variant per property type or marketplace), so the Create and Update operations on these resources accept the body as a JSON parameter. See the EstateSync API reference for the per-type field list.

Trigger behavior

The EstateSync Trigger node manages its own webhook subscription:

  • On workflow activation, it calls POST /webhooks with the n8n-generated URL and the events you selected.
  • On deactivation, it calls DELETE /webhooks/{id} to clean up.
  • On every incoming delivery, it emits the JSON body — { eventId, eventName, eventPayload, eventTime } — into the workflow.

EstateSync retries non-2xx responses up to 8 times with exponential backoff. The trigger does not verify request signatures (EstateSync does not currently document a signing scheme).

Development

git clone https://github.com/hansdoebel/n8n-nodes-estatesync.git
cd n8n-nodes-estatesync
bun install
bun run build
bun run lint

License

MIT