Skip to main content

Scrape Airbnb listings with pagination & store in Google Sheets

Workflow preview

Workflow preview
100%
Scrape Airbnb listings with pagination & store in Google Sheets preview
Open on n8n.io

Important notice

This workflow is provided as-is. Please review and test before using in production.

1. Workflow Overview

This workflow contains community nodes that are only compatible with the self hosted version of n8n. Description This n8n workflow automatically scrapes Airbnb listings from a specified location an...

Best for

  • Market Research automation workflows
  • advanced n8n builders looking for reusable templates

Tools used

n8n-nodes-base.code, n8n-nodes-base.googlesheets, n8n-nodes-mcp.mcpclient, n8n-nodes-base.set, n8n-nodes-base.splitinbatches, n8n-nodes-base.manualtrigger, n8n-nodes-base.if, n8n-nodes-base.merge

Source and attribution

This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by Alex Huy.

Original n8n.io source

1.1 Workflow description

Title
Scrape Airbnb listings with pagination & store in Google Sheets
Workflow name
Scrape Airbnb listings with pagination & store in Google Sheets

This workflow contains community nodes that are only compatible with the self-hosted version of n8n.

Description

This n8n workflow automatically scrapes Airbnb listings from a specified location and saves the data to a Google Sheet. It performs pagination to collect listings across multiple pages, extracts detailed information for each property, and organizes the data in a structured format for easy analysis.

How it Works

The workflow operates through these high-level steps:

  • Search Initialization: Starts with an Airbnb search for a specific location (London) with defined check-in/check-out dates and guest count
  • Pagination Loop: Automatically processes multiple pages of search results using cursor-based pagination
  • Data Extraction: Parses listing information including names, prices, ratings, reviews, and URLs
  • Detail Enhancement: Fetches additional details for each listing (house rules, highlights, descriptions, amenities)
  • Data Storage: Saves all collected data to a Google Sheet with proper formatting
  • Loop Control: Continues until reaching the page limit (2 pages) or no more results are available

Setup Steps

  • Prerequisites n8n instance with MCP (Model Context Protocol) support Google Sheets API credentials configured Airbnb MCP client properly set up

  • Configuration Steps --- Configure MCP Client Set up the Airbnb MCP client with credential ID: Ensure the client has access to airbnb_search and airbnb_listing_details tools --- Google Sheets Setup Create a Google Sheet with ID: 15IOJquaQ8CBtFilmFTuW8UFijux10NwSVzStyNJ1MsA Configure Google Sheets OAuth2 credentials (ID: 6YhBlgb8cXMN3Ra2) Ensure the sheet has these column headers: "id, name, url, price_per_night, total_price, price_details beds_rooms, rating, reviews, badge, location houseRules, highlights, description, amenities"

  • Search Parameters Location: "London" (can be modified in the "Airbnb Search" node) Adults: 7 Children: 1 Check-in: "2025-08-14" Check-out: "2025-08-17" Page limit: 2 (can be adjusted in the "If1" condition node)

  • Execution Use the manual trigger "When clicking 'Execute workflow'" to start the process Monitor the workflow execution through the n8n interface Check the Google Sheet for populated data after completion

  • Key Features Automatic Pagination: Processes multiple pages without manual intervention Comprehensive Data: Extracts both basic listing info and detailed property information Error Handling: Includes JSON parsing error handling and data validation Batch Processing: Uses split batches for efficient processing of individual listings Real-time Updates: Appends new data to existing Google Sheet records

Output Data Structure

Each listing contains:

  • Basic info: ID, name, URL, pricing details, room/bed count
  • Ratings: Average rating and review count Location: Latitude and longitude coordinates
  • Enhanced details: House rules, highlights, descriptions, amenities
  • Metadata: Page number, check-in/out dates, badges

1.2 Logical Blocks

This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.

2. Block-by-Block Analysis

Block 1 - Format Data

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 2 - Clear Google Sheet

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.4

Block 3 - Update Google Sheet

Type / Role
n8n-nodes-base.googleSheets - googleSheets
Config choices
Version 4.4

Block 4 - Get Airbnb Listing Details

Type / Role
n8n-nodes-mcp.mcpClient - mcpClient
Config choices
Version 1

Block 5 - Edit Fields

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 6 - Loop Over Items

Type / Role
n8n-nodes-base.splitInBatches - splitInBatches
Config choices
Version 3

Block 7 - When clicking ‘Execute workflow’

Type / Role
n8n-nodes-base.manualTrigger - manualTrigger
Config choices
Version 1

Block 8 - Final Results

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 9 - Parse Listing Data2

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 10 - If1

Type / Role
n8n-nodes-base.if - if
Config choices
Version 2.2

Block 11 - Initial Set1

Type / Role
n8n-nodes-base.set - set
Config choices
Version 3.4

Block 12 - Merge5

Type / Role
n8n-nodes-base.merge - merge
Config choices
Version 3.2

Block 13 - Code2

Type / Role
n8n-nodes-base.code - code
Config choices
Version 2

Block 14 - Airbnb Search

Type / Role
n8n-nodes-mcp.mcpClient - mcpClient
Config choices
Version 1

Block 15 - Sticky Note

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 16 - Sticky Note1

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 17 - Sticky Note2

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

Block 18 - Sticky Note3

Type / Role
n8n-nodes-base.stickyNote - stickyNote
Config choices
Version 1

3. Summary Table

Workflow Scrape Airbnb listings with pagination & store in Google Sheets
Complexity advanced
Nodes 18
Categories Market Research
Author Alex Huy
Published 14 Jul 2025

4. Reproducing the Workflow from Scratch

  1. 1. Download the workflow JSON

    Use the JSON export at /data/workflows/5981/5981.json as the source template for this automation.

  2. 2. Import the template into n8n

    Open n8n, import the downloaded JSON, and review each node before activating the workflow.

  3. 3. Configure credentials and variables

    Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.

  4. 4. Test with sample data

    Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.

  5. 5. Activate and monitor

    Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.

5. General Notes & Resources

Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.

Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.

Frequently asked questions

What does Scrape Airbnb listings with pagination & store in Google Sheets do?

This workflow contains community nodes that are only compatible with the self hosted version of n8n. Description This n8n workflow automatically scrapes Airbnb listings from a specified location an...

What do I need before importing this workflow?

Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.

Can I customize this workflow?

Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your Market Research use case.