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

v0.2.7

Published

n8n community node for Sharetribe marketplace platform integration

Readme

n8n-nodes-sharetribe

This is an n8n community node. It lets you use Sharetribe in your n8n workflows.

Sharetribe is a cloud platform for building and running online marketplaces. It provides the backend infrastructure — user management, listings, transactions, messaging, and payments — so marketplace operators can launch without building from scratch.

Requires the 'Build', 'Pro' or 'Extend' plan to access the Sharetribe Integration API.

n8n is a fair-code licensed workflow automation platform.

Note: This n8n community node is not developed or maintained by Sharetribe. It has however been vetted by Sharetribe and is developed and maintained by a verified Sharetribe Expert.

a verified sharetribe expert badge

Installation
Operations
Credentials
Compatibility
Usage
Resources

Installation

Follow the installation guide in the n8n community nodes documentation.

Operations

Sharetribe Trigger Node

Polls for events from your Sharetribe marketplace:

| Event Type | Events | | ---------------------- | ----------------------------------------- | | Availability Exception | Created, Updated, Deleted | | Booking | Created, Updated, Deleted | | Listing | Created, Updated, Deleted | | Message | Created, Updated, Deleted | | Review | Created, Updated, Deleted | | Stock Adjustment | Created, Updated, Deleted | | Stock Reservation | Created, Updated, Deleted | | Transaction | Initiated, Transitioned, Updated, Deleted | | User | Created, Updated, Deleted |

Sharetribe Node

| Resource | Operations | | ---------------------- | ---------------------------------------------------------------------------------------------------- | | Asset | Get (translations, email texts, branding, listing fields, listing types, user fields, content pages) | | Availability Exception | Create, Delete, Get Many | | Image | Upload (from file or URL) | | Listing | Approve, Close, Create, Get, Get Availability, Get Many, Open, Update | | Marketplace | Get Name | | Stock | Get Adjustments, Get Reservation, Update Quantity | | Transaction | Get, Get Many, Transition, Transition Speculative, Update | | User | Approve, Get, Get Many, Update, Update Permissions |

Assets are marketplace configuration files stored on Sharetribe's CDN, fetchable by alias (latest) or specific version ID.

Credentials

Create new credentials of type Sharetribe Integration API in n8n:

  1. Integration API Client ID and Integration API Client Secret — create an Integration API application in Sharetribe Console → Build → Advanced → Applications.

  2. Sharetribe Plan — select your plan:

Compatibility

  • Minimum n8n version: 1.0.0
  • Tested with: n8n versions 1.0.0+
  • Sharetribe API: Compatible with Sharetribe Integration API v2025-12-16

Usage

If you are new to n8n check out the n8n's Try it out documentation to get started.

Search Filters and Sorting

The node learns about your marketplace's extended data configuration to determine what extended data fields can be used as filter and sort options for Listings, Users and Transactions.

The node also learns your marketplace Listing types, User types, Listing Categories, Transaction transitions and Transaction Processes. These can then be used as Search filters.

Note: Only marketplaces using the 'Extend' plan can define custom fields for search and sort on Transactions and Users, see Search schema. Public fields on a Listing can be defined as searchable and sortable in the Sharetribe console on any plan.

Count Only

Get Many operations for Listings, Transactions, Users, and Stock Adjustments support a Count Only option that returns just the total number of matching records instead of the full list — useful for conditional logic without fetching data you don't need.

Response Flattening

API responses are automatically simplified into flat, easy-to-use objects with related data merged in.

Updating Extended Data

When creating or updating a Listing, Transaction, or User, extended data fields can be added or updated in two modes:

  • Manual Mapping (Recommended) — add or update individual fields one by one. Only the fields you specify are changed; everything else is left untouched. Supports dot-notation for nested values (e.g. details.size).

  • JSON — provide a raw JSON object that is merged at the top level only (shallow merge). Use with caution: if a field already contains a nested object, it will be fully replaced, not merged. Top-level fields set to null are deleted entirely.

    Example — if publicData is currently:

    {
    	"color": "red",
    	"details": { "size": "large", "weight": 5 }
    }

    and you provide:

    {
    	"details": { "size": "small" }
    }

    the result is:

    {
    	"color": "red",
    	"details": { "size": "small" }
    }

    weight is permanently deleted. Use Manual Mapping with details.size to avoid this.

Deleting individual fields — Update operations include a separate Delete Fields section. Enter the field path (dot-notation supported). For example, setting the path to details.weight removes only that key while leaving the rest of details intact.

Resources

Troubleshooting

Issues can be created in the GitHub repository for the node https://github.com/tribebuilder/n8n-nodes-sharetribe.

License

MIT

Development

See DEVELOPMENT.md