# Ultimate Airbnb Scraper (`hyperscrape/hyper-airbnb-scraper`) Actor

Really Fast and Efficient Airbnb Scraper. Extract detailed listing information, including prices, availability, host details, amenities, guest capacity, images and more.
Perfect for market research, travel analysis, and lead generation. Export data in JSON, CSV, Excel, or HTML.

- **URL**: https://apify.com/hyperscrape/hyper-airbnb-scraper.md
- **Developed by:** [Hyper Scrape](https://apify.com/hyperscrape) (community)
- **Categories:** Travel, Lead generation, Real estate
- **Stats:** 6 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

$19.00/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period.You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

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

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — 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 Scraper: High-Performance Data Extraction

Unlock the full potential of Airbnb data with this state-of-the-art scraper. Designed for scale and speed, it extracts detailed listing information including pricing, host details, amenities, and more.

***

### 🚀 Key Features

- **⚡ High-Speed Sharding**: Automatically splits search queries into granular price brackets to maximize results.
- **🛠️ Customizable Enrichment**: Start with fast search extraction and selectively add deep details (descriptions, amenities, host info, images).
- **🌍 Global Reach**: Supports custom currencies, locales, and precise location-based queries.
- **🛡️ Anti-Block Technology**: Optimized for use with proxies to ensure consistent uptime.

***

### 📊 Extracted Data Fields

The scraper returns a comprehensive JSON object for each listing.

| Category | Fields |
|----------|--------|
| **Core Info** | `listingId`, `url`, `listingTitle`, `roomType`, `scrapedAt` |
| **Pricing** | `price` (amount, currency), `currency` |
| **Capacity** | `personCapacity`, `bedrooms`, `beds`, `bathrooms` |
| **Visuals** | `thumbnail`, `imagesCsv` (High-res URLs) |
| **Ratings** | `rating`, `reviewsCount` |
| **Details** | `listingDescription`, `subDescription`, `amenitiesCsv`, `houseRules` |
| **Host** | `host` (ID, Name, isSuperhost, Profile URL) |
| **Location** | `location` (City/Region), `coordinates` (Lat/Lng), `locale` |

#### Example Output

```json
{
  "listingId": "12345678",
  "url": "https://www.airbnb.com/rooms/12345678",
  "listingTitle": "Stylish 1 bed by Tower Bridge",
  "price": {
    "amount": "150",
    "currency": "USD"
  },
  "rating": "4.85",
  "reviewsCount": 120,
  "personCapacity": 2,
  "bedrooms": 1,
  "beds": 1,
  "bathrooms": 1,
  "host": {
    "id": "987654321",
    "name": "Emma",
    "isSuperHost": true
  },
  "location": "London, United Kingdom",
  "amenitiesCsv": "Wifi, Kitchen, Air conditioning, Washer",
  "imagesCsv": "https://a0.muscache.com/im/pictures/..."
}
```

***

### 📥 Input Configuration

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `locationQueries` | Array | `["London"]` | Cities or regions to target. |
| `startUrls` | Array | `[]` | Direct URLs to scrape. |
| `checkIn` / `checkOut` | String | - | Dates (YYYY-MM-DD). Imparts accurate pricing. |
| `minPrice` / `maxPrice` | Integer | `0` / `2000` | Price range to scrape. |
| `maxListings` | Integer | `0` (Unlimited) | Stop after N listings. |
| `currency` | String | `USD` | Target currency for pricing. |
| `simpleMode` | Boolean | `true` | Fast mode (search results only). |
| `addOnDetails` | Boolean | `false` | Enrich with full description & rules. |
| `addOnImages` | Boolean | `false` | Enrich with all images. |
| `addOnHostDetails` | Boolean | `false` | Enrich with host profile. |

> **Note**: `proxyConfiguration` is hidden and defaults to using Apify Proxy for best performance.

***

### 💡 Usage Tips

1. **Date Selection**: Providing specific `checkIn` and `checkOut` dates ensures the most accurate nightly rates.
2. **Start Small**: Test with `maxListings: 10` before running larger scrapes.
3. **Price Filtering**: Use `minPrice` and `maxPrice` to narrow down listings and trigger sharding for better coverage.

***

### 🛠️ Local Development

```bash
## Install dependencies
npm install

## Run locally
npm start
```

### 💳 Pricing & Credits

- **Efficiency**: Optimized to minimize requests.
- **Cost**: Depends on "Deep Mode" features enabled.

## apify-airbnb-scraper

## apify-airbnb-scraper

## apify-airbnb-scraper

## apify-airbnb-scraper

# Actor input Schema

## `locationQueries` (type: `array`):

Enter cities or regions to search (e.g., London, Paris, New York).

## `startUrls` (type: `array`):

Direct Airbnb listing or search URLs to scrape.

## `checkIn` (type: `string`):

Check-in date in YYYY-MM-DD format. If empty, a 1-night stay in the future is used to force nightly pricing.

## `checkOut` (type: `string`):

Check-out date in YYYY-MM-DD format.

## `locale` (type: `string`):

Language/region for results.

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

Select the currency for prices. Standardizing on one currency is recommended for sharding.

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

Minimum price per night.

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

Maximum price per night.

## `minBeds` (type: `integer`):

Minimum number of beds.

## `minBedrooms` (type: `integer`):

Minimum number of bedrooms.

## `minBathrooms` (type: `integer`):

Minimum number of bathrooms.

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

Number of adult guests.

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

Number of children.

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

Number of infants.

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

Number of pets.

## `maxListings` (type: `integer`):

Maximum number of listings to scrape. Set 0 for running without any limit.

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

Use Apify Proxy to avoid IP blocking. Residential proxies are recommended for Airbnb.

## `simpleMode` (type: `boolean`):

Always enabled. Base data (title, price, rating, URL, thumbnail) is scraped from search result pages at high speed. Enable add-ons below to enrich listings with additional details like full descriptions, amenities, host info, and images — each add-on visits the listing page individually so it is slower.

## `addOnDetails` (type: `boolean`):

Visit each listing to scrape full description, amenities, and house rules. (Slower, requires Fast Mode unchecked)

## `addOnHostDetails` (type: `boolean`):

Visit each listing to scrape host information (Name, ID, Superhost status). (Slower, requires Fast Mode unchecked)

## `addOnImages` (type: `boolean`):

Visit each listing to scrape high-resolution images. (Slower, requires Fast Mode unchecked)

## `enableHorizontalScaling` (type: `boolean`):

Automatically enabled for high-speed parallel scraping.

## `priceShardingStep` (type: `integer`):

Controls how much the price range is split during scraping. Smaller step sizes divide the range into more segments, helping collect more unique results. However, smaller steps also increase the total number of requests and make scraping slower. Larger step sizes scrape faster but may return fewer unique results.

## Actor input object example

```json
{
  "locationQueries": [
    "London"
  ],
  "locale": "en-US",
  "currency": "USD",
  "minPrice": 0,
  "maxPrice": 1000,
  "maxListings": 10,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "simpleMode": true,
  "addOnDetails": false,
  "addOnHostDetails": false,
  "addOnImages": false,
  "enableHorizontalScaling": true,
  "priceShardingStep": 5
}
```

# Actor output Schema

## `overview` (type: `string`):

No description

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("hyperscrape/hyper-airbnb-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 = {}

# Run the Actor and wait for it to finish
run = client.actor("hyperscrape/hyper-airbnb-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 '{}' |
apify call hyperscrape/hyper-airbnb-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/6z6aHnjUy1l3WOezj/builds/3cgkar7QviPqerZcE/openapi.json
