The workflow JSON
Copy or download the full n8n JSON below. Paste it into a new n8n workflow, add your credentials, activate. Full import guide →
{
"id": "e2e-listing-getmany-filters",
"name": "[E2E] Listing - Get Many with Filters",
"active": false,
"settings": {
"executionOrder": "v1"
},
"tags": [
{
"name": "e2e"
},
{
"name": "sharetribe"
},
{
"name": "listing"
}
],
"nodes": [
{
"id": "sticky-listing-getmany-filters",
"name": "Note",
"type": "n8n-nodes-base.stickyNote",
"typeVersion": 1,
"position": [
240,
120
],
"parameters": {
"content": "## Listing - Get Many with Filters\n\nTests filtering listings by state and sorting by creation date.\n\n**Input:** None\n\n**Steps:**\n1. Manual trigger\n2. Fetch published listings sorted by createdAt DESC\n\n**Expected output:** Array of published listings in newest-first order",
"color": 4
}
},
{
"id": "step-note-trigger",
"name": "Step 1",
"type": "n8n-nodes-base.stickyNote",
"typeVersion": 1,
"position": [
240,
460
],
"parameters": {
"content": "**Step 1:** Manual trigger",
"width": 220,
"height": 100
}
},
{
"id": "step-note-get-filtered-listings",
"name": "Step 2",
"type": "n8n-nodes-base.stickyNote",
"typeVersion": 1,
"position": [
460,
460
],
"parameters": {
"content": "**Step 2:** Fetch published listings sorted by createdAt DESC",
"width": 220,
"height": 100
}
},
{
"id": "trigger-listing-getmany-filters",
"name": "Manual Trigger",
"type": "n8n-nodes-base.manualTrigger",
"typeVersion": 1,
"position": [
240,
300
],
"parameters": {}
},
{
"id": "sharetribe-listing-getmany-filters",
"name": "Get Filtered Listings",
"type": "CUSTOM.sharetribe",
"typeVersion": 1,
"position": [
460,
300
],
"credentials": {
"sharetribeOAuth2Api": {
"name": "<your credential>"
}
},
"parameters": {
"resource": "listing",
"operation": "getMany",
"returnAll": false,
"limit": 5,
"filterOptions": {
"filters": [
{
"filterType": "states",
"states": [
"published"
]
}
]
},
"sortOptions": {
"sort": [
{
"field": "createdAt",
"direction": "DESC"
}
]
}
}
}
],
"connections": {
"Manual Trigger": {
"main": [
[
{
"node": "Get Filtered Listings",
"type": "main",
"index": 0
}
]
]
}
}
}
Credentials you'll need
Each integration node will prompt for credentials when you import. We strip credential IDs before publishing — you'll add your own.
sharetribeOAuth2Api
For the full experience including quality scoring and batch install features for each workflow upgrade to Pro
About this workflow
[E2E] Listing - Get Many with Filters. Uses CUSTOM. Event-driven trigger; 5 nodes.
Source: https://github.com/TribeBuilder/n8n-nodes-sharetribe/blob/main/workflows/e2e-tests/listing/getMany/filters.json — original creator credit. Request a take-down →
Related workflows
Workflows that share integrations, category, or trigger type with this one. All free to copy and import.
[E2E] Listing - Create, Approve, Close. Uses CUSTOM. Event-driven trigger; 9 nodes.
[E2E] Availability Exceptions - Create and Delete. Uses CUSTOM. Event-driven trigger; 7 nodes.
[E2E] Availability Exceptions - Get Many. Uses CUSTOM. Event-driven trigger; 5 nodes.