# 🏠 Airbnb Scraper — Prices, Ratings & Geo · $3/1k (`themineworks/airbnb-scraper`) Actor

Scrape Airbnb stay listings by location and dates: price, rating, review count, superhost status, property type, coordinates and photos. No login, no API key. Use as an MCP server in Claude & AI agents.

- **URL**: https://apify.com/themineworks/airbnb-scraper.md
- **Developed by:** [The Mine Works](https://apify.com/themineworks) (community)
- **Categories:** Travel, Real estate, MCP servers
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$3.00 / 1,000 listing 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 Scraper — Listings, Prices, Ratings & Geo

### What is the Airbnb Scraper?

The Airbnb Scraper is a fast, pay-per-result Apify Actor that extracts Airbnb stay listings for any location — with nightly **price**, guest **rating**, review count, **superhost** status, GPS coordinates, property type and photo. Give it a destination (and optionally your travel dates), and it returns clean, structured JSON, CSV or Excel you can drop straight into a spreadsheet, dashboard or AI agent.

- **Track short-term rental prices** across any city, neighborhood or date range
- **Benchmark competitors** on price, rating and review volume for revenue management
- **Build travel and real-estate datasets** with coordinates ready for mapping
- **Feed AI agents and MCP clients** live Airbnb supply data on demand
- **Monitor a market over time** by re-running on a schedule

### No official API? No problem.

Airbnb has no public listings API, and the numbers you see on the site are gated behind heavy client-side rendering. This Actor handles that for you — search resolution, pagination and price extraction — so you get the same data a visitor sees, at scale, without writing any parsing code or maintaining browser automation yourself. Residential proxies are used by default for reliable results. You are only charged for listings actually returned, and the first 25 lifetime results are free.

### 📤 Output fields

| Field | Type | Description |
|-------|------|-------------|
| 🆔 `listingId` | string | Airbnb listing ID |
| 🏷️ `name` | string | Listing name |
| 📝 `title` | string | Listing title / subtitle |
| 🏠 `propertyType` | string | Room or property type |
| 👥 `personCapacity` | number | Maximum guests |
| 💵 `price` | number | Nightly price (numeric) |
| 💲 `priceText` | string | Formatted price string |
| 💱 `currency` | string | Currency code |
| ⭐ `rating` | number | Average rating |
| 🗣️ `reviewsCount` | number | Number of reviews |
| 🎖️ `isSuperhost` | boolean | Host is a superhost |
| 📍 `latitude` | number | Latitude |
| 📍 `longitude` | number | Longitude |
| 🌆 `city` | string | City |
| 🖼️ `photoUrl` | string | Primary photo URL |
| 🏅 `badges` | array | Listing badges (e.g. Guest favorite) |
| 🔗 `url` | string | Airbnb listing URL |
| 🕒 `scraped_at` | string | ISO timestamp when scraped |

### How to scrape Airbnb in 5 steps

1. Open the Airbnb Scraper on Apify and click **Try for free**.
2. Enter a **Location** (e.g. `Lisbon, Portugal`, `Austin, TX`, `Bali`).
3. Optionally set **Check-in / Check-out** dates and number of **adults** for date-specific pricing.
4. Set **Max listings** and, if you like, a **min / max price** filter.
5. Click **Start**, then download results as JSON, CSV, Excel or HTML.

### Example input

```json
{
  "location": "Lisbon, Portugal",
  "checkIn": "2026-09-01",
  "checkOut": "2026-09-04",
  "adults": 2,
  "minPrice": 40,
  "maxPrice": 250,
  "maxItems": 100,
  "proxyConfig": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }
}
````

### Example output

```json
{
  "listingId": "12345678",
  "name": "Sunny apartment in Alfama",
  "title": "Entire rental unit",
  "propertyType": "Entire rental unit",
  "personCapacity": 4,
  "price": 118,
  "priceText": "€118 night",
  "currency": "EUR",
  "rating": 4.92,
  "reviewsCount": 214,
  "isSuperhost": true,
  "latitude": 38.7139,
  "longitude": -9.1275,
  "city": "Lisbon",
  "photoUrl": "https://a0.muscache.com/im/pictures/example.jpg",
  "badges": ["Guest favorite"],
  "url": "https://www.airbnb.com/rooms/12345678",
  "scraped_at": "2026-07-10T09:15:00.000Z"
}
```

### Use cases

- **Revenue management & dynamic pricing** — pull comparable listings for a market and date window to set competitive nightly rates.
- **Market research for hosts and STR investors** — measure supply, average price and rating by neighborhood before buying or listing.
- **Travel apps & comparison tools** — populate a product with structured stays including photos, coordinates and superhost signals.
- **Geo-analytics & mapping** — use latitude/longitude to build heatmaps of price or availability across a city.
- **Academic & data-science research** — assemble large structured datasets of short-term rental pricing patterns.
- **AI agents** — let an assistant answer "find the 20 cheapest superhost stays in Bali this weekend" with live data.

### FAQ

#### Do I need an Airbnb account or API key?

No. There is no login and no API key. Enter a location and run.

#### How many listings can I scrape?

Up to 2,000 per run via the **Max listings** field. Run multiple locations or dates to go wider.

#### Can I get date-specific prices?

Yes. Add **Check-in** and **Check-out** dates and prices reflect that stay.

#### How am I charged?

Pay-per-result: you pay only for listings actually returned, and the first 25 lifetime results are free.

#### Why is a residential proxy used?

Airbnb fingerprints and rate-limits by IP. Residential proxies (the default) keep runs reliable.

### Use in Claude, ChatGPT & any MCP agent

This Actor is available as an MCP tool, so AI assistants can call it directly:

```
https://mcp.apify.com/?tools=themineworks/airbnb-scraper
```

Or run it from code with the Apify client:

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

const client = new ApifyClient({ token: 'YOUR_APIFY_TOKEN' });
const run = await client.actor('themineworks/airbnb-scraper').call({
  location: 'Lisbon, Portugal',
  maxItems: 100,
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);
```

### Related scrapers by themineworks

- [Zillow Property Details Scraper](https://apify.com/themineworks/zillow-property-details)
- [Redfin Scraper](https://apify.com/themineworks/redfin-scraper)
- [Realtor Scraper](https://apify.com/themineworks/realtor-scraper)
- [RAG Website Crawler](https://apify.com/themineworks/rag-crawler)

# Actor input Schema

## `location` (type: `string`):

Destination to search (e.g. "Lisbon, Portugal", "Austin, TX", "Bali").

## `maxItems` (type: `integer`):

Maximum number of listings to scrape. First 25 lifetime are free.

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

Check-in date in YYYY-MM-DD format (optional). Enables date-specific pricing.

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

Check-out date in YYYY-MM-DD format (optional).

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

Number of adult guests (optional).

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

Only return listings priced at or above this nightly rate.

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

Only return listings priced at or below this nightly rate.

## `proxyConfig` (type: `object`):

Apify proxy settings. Residential recommended for Airbnb.

## Actor input object example

```json
{
  "location": "Lisbon, Portugal",
  "maxItems": 5,
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# Actor output Schema

## `results` (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 = {
    "location": "Lisbon, Portugal",
    "maxItems": 5,
    "proxyConfig": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("themineworks/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 = {
    "location": "Lisbon, Portugal",
    "maxItems": 5,
    "proxyConfig": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    },
}

# Run the Actor and wait for it to finish
run = client.actor("themineworks/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 '{
  "location": "Lisbon, Portugal",
  "maxItems": 5,
  "proxyConfig": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call themineworks/airbnb-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "🏠 Airbnb Scraper — Prices, Ratings & Geo · $3/1k",
        "description": "Scrape Airbnb stay listings by location and dates: price, rating, review count, superhost status, property type, coordinates and photos. No login, no API key. Use as an MCP server in Claude & AI agents.",
        "version": "0.1",
        "x-build-id": "VsfITDeDv8Cmcmkuv"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/themineworks~airbnb-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-themineworks-airbnb-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/themineworks~airbnb-scraper/runs": {
            "post": {
                "operationId": "runs-sync-themineworks-airbnb-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/themineworks~airbnb-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-themineworks-airbnb-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": [
                    "location"
                ],
                "properties": {
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "Destination to search (e.g. \"Lisbon, Portugal\", \"Austin, TX\", \"Bali\").",
                        "default": "Lisbon, Portugal"
                    },
                    "maxItems": {
                        "title": "Max listings",
                        "minimum": 1,
                        "maximum": 2000,
                        "type": "integer",
                        "description": "Maximum number of listings to scrape. First 25 lifetime are free.",
                        "default": 5
                    },
                    "checkIn": {
                        "title": "Check-in date",
                        "type": "string",
                        "description": "Check-in date in YYYY-MM-DD format (optional). Enables date-specific pricing."
                    },
                    "checkOut": {
                        "title": "Check-out date",
                        "type": "string",
                        "description": "Check-out date in YYYY-MM-DD format (optional)."
                    },
                    "adults": {
                        "title": "Number of adults",
                        "type": "integer",
                        "description": "Number of adult guests (optional)."
                    },
                    "minPrice": {
                        "title": "Minimum price per night",
                        "type": "integer",
                        "description": "Only return listings priced at or above this nightly rate."
                    },
                    "maxPrice": {
                        "title": "Maximum price per night",
                        "type": "integer",
                        "description": "Only return listings priced at or below this nightly rate."
                    },
                    "proxyConfig": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Apify proxy settings. Residential recommended for Airbnb.",
                        "default": {
                            "useApifyProxy": true,
                            "apifyProxyGroups": [
                                "RESIDENTIAL"
                            ]
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
