# Airbnb Search Scraper — Listings, Prices & Reviews (`rastriq/airbnb-search-scraper`) Actor

Extract Airbnb listings for any location worldwide. Get prices, ratings, photos, coordinates, host info, and badges. Optional detail enrichment with amenities, house rules, and host profiles. Auto-segmentation breaks Airbnb's 270-result cap. Fast SSR parsing, no browser needed.

- **URL**: https://apify.com/rastriq/airbnb-search-scraper.md
- **Developed by:** [Rastriq — Structured data from the world](https://apify.com/rastriq) (community)
- **Categories:** Travel, Developer tools, Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.60 / 1,000 record scrapeds

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Airbnb Search Scraper

Extract Airbnb listing data for any city, neighborhood, or postal code worldwide. Get titles, prices, ratings, photos, coordinates, host info, and more — fast and at scale.

### What you can do

- **Search any location** — cities, neighborhoods, regions, or specific postal/zip codes
- **Get complete listing data** — pricing, ratings, photos, coordinates, badges, and availability
- **Enrich with detail pages** — optionally fetch full descriptions, amenities, host profiles, and house rules
- **Cover entire markets** — automatic segmentation breaks through Airbnb's 270-result cap per search
- **Target specific zones** — use postal codes for granular geographic coverage

### How to use

1. Enter a **location** (city, neighborhood, or region)
2. Set your **max results** limit
3. Click **Start**

That's it. The scraper handles pagination, deduplication, and result limits automatically.

#### Postal code targeting

For granular coverage of a specific market, add postal/zip codes. Each code runs as a separate search, and results are deduplicated globally:

```json
{
  "query": "New York, NY",
  "postalCodes": ["10001", "10002", "10003", "10004", "10005"]
}
````

This is especially useful for large cities where a single search won't return all listings.

#### Detail enrichment

Enable **"Enrich with detail pages"** to visit each listing page and extract additional data:

- Full property description
- Host profile and Superhost status
- Property details (beds, baths, max guests)
- Location and neighborhood info

Enrichment makes the run slower (~10 listings/min vs ~150/min without) but gives you much richer data.

### Output

Each listing includes:

| Field | Description |
|-------|-------------|
| `id` | Airbnb listing ID |
| `title` | Listing title |
| `name` | Property name |
| `price` | Nightly price |
| `priceLabel` | Full price label with total |
| `avgRating` | Average rating with review count |
| `latitude` / `longitude` | GPS coordinates |
| `photos` | Array of photo URLs |
| `badges` | Superhost, Guest Favorite, etc. |
| `url` | Direct link to listing |
| `checkin` / `checkout` | Available dates |
| `hostInfo` | Host type (professional, individual) |

With enrichment enabled, you also get:

| Field | Description |
|-------|-------------|
| `description` | Full property description |
| `shareTitle` | Summary with beds/baths/guests |
| `locationSubtitle` | City and country |
| `amenities` | Complete amenity list |
| `hostName` | Host name |
| `isSuperhost` | Superhost status |
| `houseRules` | Property rules |
| `maxGuests` / `bedrooms` / `beds` / `bathrooms` | Property details |

### Cost estimate

This scraper is extremely cost-efficient — no browser needed, just lightweight HTTP requests.

| Results | Without enrichment | With enrichment |
|---------|--------------------|-----------------|
| 1,000 | ~$0.01, ~3 min | ~$0.05, ~100 min |
| 5,000 | ~$0.07, ~16 min | ~$0.25, ~8 hours |
| 10,000 | ~$0.13, ~32 min | ~$0.50, ~16 hours |

Costs are approximate and depend on market density and segmentation depth.

### Tips

- **Start small** — use `maxResults: 50` for your first run to verify the data format works for you
- **Use postal codes for large cities** — a single search for "New York" caps at ~270 results; postal codes let you cover the entire city
- **Currency** — set the `currency` field (e.g., `USD`, `EUR`) to get prices in your preferred currency
- **Auto-segmentation** — enabled by default, this automatically subdivides searches that hit Airbnb's result cap by splitting into price ranges and room types

### Integrations

Connect this scraper to your workflow:

- **Google Sheets** — export results directly
- **Webhooks** — trigger actions when a run completes
- **API** — call programmatically from any language
- **Scheduled runs** — monitor listings daily or weekly

### Pricing

$0.60 per 1,000 results.

### Support

Having issues or need help? [Open an issue](https://apify.com/rastriq/airbnb-search-scraper/issues) and we'll respond promptly.

# Actor input Schema

## `query` (type: `string`):

City, neighborhood, or region to search — exactly as you'd type it on Airbnb.<br>Examples: <code>New York, NY</code>, <code>Paris, France</code>, <code>Tokyo</code>, <code>Mallorca, Spain</code>

## `postalCodes` (type: `array`):

List of postal codes to search individually. Each code generates a search like <code>{location}, {code}</code>.<br>Example: <code>\["10001", "10002", "10003"]</code><br><br>Leave empty to search the full location.

## `maxResults` (type: `integer`):

Hard limit on total listings to extract across all zones. The scraper stops immediately when this number is reached. Set to 0 for no limit.

## `maxPages` (type: `integer`):

Pages of results per price/type segment. Each page has ~18 listings. Lower values = faster but may miss some results.

## `checkin` (type: `string`):

Format: YYYY-MM-DD. Leave empty for a general search without specific dates.

## `checkout` (type: `string`):

Format: YYYY-MM-DD.

## `adults` (type: `integer`):

Number of adult guests.

## `children` (type: `integer`):

Ages 2–12.

## `infants` (type: `integer`):

Under 2 years old.

## `pets` (type: `integer`):

Number of pets.

## `minPrice` (type: `integer`):

Minimum nightly price in the selected currency.

## `maxPrice` (type: `integer`):

Maximum nightly price in the selected currency.

## `currency` (type: `string`):

ISO 4217 currency code for prices. Examples: <code>USD</code>, <code>EUR</code>, <code>GBP</code>, <code>JPY</code>. Leave empty for Airbnb's default.

## `roomType` (type: `string`):

Filter by accommodation type.

## `enrichDetails` (type: `boolean`):

When enabled, visits each listing page to extract: full description, complete amenity list, host profile, house rules, property details (beds, baths, max guests), and neighborhood info.

## `autoSegment` (type: `boolean`):

Automatically subdivide searches that hit Airbnb's result cap. Disable for a quick sample only.

## `proxyConfiguration` (type: `object`):

Configure proxies to avoid blocks. The default Apify proxy works well for most cases.

## Actor input object example

```json
{
  "query": "New York, NY",
  "maxResults": 200,
  "maxPages": 5,
  "adults": 1,
  "children": 0,
  "infants": 0,
  "pets": 0,
  "roomType": "",
  "enrichDetails": false,
  "autoSegment": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `dataset` (type: `string`):

Dataset with all extracted Airbnb listings

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "query": "New York, NY",
    "maxResults": 200,
    "maxPages": 5,
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("rastriq/airbnb-search-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "query": "New York, NY",
    "maxResults": 200,
    "maxPages": 5,
    "proxyConfiguration": { "useApifyProxy": True },
}

# Run the Actor and wait for it to finish
run = client.actor("rastriq/airbnb-search-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "query": "New York, NY",
  "maxResults": 200,
  "maxPages": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call rastriq/airbnb-search-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=rastriq/airbnb-search-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Airbnb Search Scraper — Listings, Prices & Reviews",
        "description": "Extract Airbnb listings for any location worldwide. Get prices, ratings, photos, coordinates, host info, and badges. Optional detail enrichment with amenities, house rules, and host profiles. Auto-segmentation breaks Airbnb's 270-result cap. Fast SSR parsing, no browser needed.",
        "version": "0.1",
        "x-build-id": "CYWrNYHwZVpSLw3fR"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/rastriq~airbnb-search-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-rastriq-airbnb-search-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/rastriq~airbnb-search-scraper/runs": {
            "post": {
                "operationId": "runs-sync-rastriq-airbnb-search-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/rastriq~airbnb-search-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-rastriq-airbnb-search-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "query"
                ],
                "properties": {
                    "query": {
                        "title": "Search location",
                        "type": "string",
                        "description": "City, neighborhood, or region to search — exactly as you'd type it on Airbnb.<br>Examples: <code>New York, NY</code>, <code>Paris, France</code>, <code>Tokyo</code>, <code>Mallorca, Spain</code>"
                    },
                    "postalCodes": {
                        "title": "Postal / zip codes",
                        "type": "array",
                        "description": "List of postal codes to search individually. Each code generates a search like <code>{location}, {code}</code>.<br>Example: <code>[\"10001\", \"10002\", \"10003\"]</code><br><br>Leave empty to search the full location.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxResults": {
                        "title": "Max results",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Hard limit on total listings to extract across all zones. The scraper stops immediately when this number is reached. Set to 0 for no limit.",
                        "default": 0
                    },
                    "maxPages": {
                        "title": "Max pages per segment",
                        "minimum": 1,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Pages of results per price/type segment. Each page has ~18 listings. Lower values = faster but may miss some results.",
                        "default": 15
                    },
                    "checkin": {
                        "title": "Check-in date",
                        "type": "string",
                        "description": "Format: YYYY-MM-DD. Leave empty for a general search without specific dates."
                    },
                    "checkout": {
                        "title": "Check-out date",
                        "type": "string",
                        "description": "Format: YYYY-MM-DD."
                    },
                    "adults": {
                        "title": "Adults",
                        "minimum": 1,
                        "maximum": 16,
                        "type": "integer",
                        "description": "Number of adult guests.",
                        "default": 1
                    },
                    "children": {
                        "title": "Children",
                        "minimum": 0,
                        "maximum": 5,
                        "type": "integer",
                        "description": "Ages 2–12.",
                        "default": 0
                    },
                    "infants": {
                        "title": "Infants",
                        "minimum": 0,
                        "maximum": 5,
                        "type": "integer",
                        "description": "Under 2 years old.",
                        "default": 0
                    },
                    "pets": {
                        "title": "Pets",
                        "minimum": 0,
                        "maximum": 5,
                        "type": "integer",
                        "description": "Number of pets.",
                        "default": 0
                    },
                    "minPrice": {
                        "title": "Min price per night",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Minimum nightly price in the selected currency."
                    },
                    "maxPrice": {
                        "title": "Max price per night",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Maximum nightly price in the selected currency."
                    },
                    "currency": {
                        "title": "Currency",
                        "type": "string",
                        "description": "ISO 4217 currency code for prices. Examples: <code>USD</code>, <code>EUR</code>, <code>GBP</code>, <code>JPY</code>. Leave empty for Airbnb's default."
                    },
                    "roomType": {
                        "title": "Room type",
                        "enum": [
                            "",
                            "Entire home/apt",
                            "Private room",
                            "Shared room",
                            "Hotel room"
                        ],
                        "type": "string",
                        "description": "Filter by accommodation type.",
                        "default": ""
                    },
                    "enrichDetails": {
                        "title": "Enrich with detail pages",
                        "type": "boolean",
                        "description": "When enabled, visits each listing page to extract: full description, complete amenity list, host profile, house rules, property details (beds, baths, max guests), and neighborhood info.",
                        "default": false
                    },
                    "autoSegment": {
                        "title": "Auto-segmentation",
                        "type": "boolean",
                        "description": "Automatically subdivide searches that hit Airbnb's result cap. Disable for a quick sample only.",
                        "default": true
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Configure proxies to avoid blocks. The default Apify proxy works well for most cases."
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
