# Airbnb Listings Search Scraper (`clearrun/airbnb-listings`) Actor

Airbnb search results for any location and dates: nightly and total price, rating, review count, badges, coordinates, bedrooms and photos. Fast, cheap, no browser. Ideal for market research, pricing and travel apps.

- **URL**: https://apify.com/clearrun/airbnb-listings.md
- **Developed by:** [Clearrun Data](https://apify.com/clearrun) (community)
- **Categories:** Travel, Agents, MCP servers
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$1.00 / 1,000 listings

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/actors/running/actors-in-store.md#pay-per-event

## 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 Listings Search Scraper

Search Airbnb for any location and dates and get every listing with its **price for your stay**, nightly rate,
rating, review count, badges (Guest favourite, Superhost), bedrooms, coordinates and photos. No browser, so runs
are fast and cheap.

### What you get

```json
{
  "id": "826796780354354847",
  "url": "https://www.airbnb.com/rooms/826796780354354847?check_in=2026-10-10&check_out=2026-10-12",
  "name": "Authentic Edinburgh - Stay in Stylish Stockbridge",
  "title": "Apartment in Stockbridge",
  "propertyType": "Apartment",
  "area": "Stockbridge",
  "pricePerNight": 275.14,
  "priceTotal": 551,
  "priceOriginalTotal": 695,
  "currency": "USD",
  "nights": 2,
  "rating": 4.76,
  "reviewsCount": 92,
  "badges": ["Guest favorite"],
  "bedrooms": "1 bedroom",
  "latitude": 55.95954,
  "longitude": -3.21155,
  "images": ["https://a0.muscache.com/im/pictures/..."],
  "scrapedAt": "2026-09-08T14:02:11.512Z"
}
```

### Input

| Field | Default | Notes |
|---|---|---|
| `locations` | — | "City, Country" works best; one per line |
| `searchUrls` | — | Or paste airbnb.com search URLs with your own filters |
| `checkIn` / `checkOut` | +30 days, 2 nights | Prices are only available with dates |
| `adults`, `children`, `infants`, `pets` | 2 / 0 / 0 / 0 | Guest counts |
| `currency` | `USD` | Any ISO code |
| `minPrice` / `maxPrice` | — | Per-night bounds |
| `maxResultsPerSearch` | 100 | Airbnb caps a search at ~270; split by area or price for more |

### Pricing

Pay per listing delivered. Duplicates within a search are removed before charging.

#### Speed & cost

About 30–60 seconds for 100 results; a 100-result run costs roughly $0.10 in events plus about $0.01–0.05 of
platform usage.

### Tips

- For full market coverage of a city, run several searches with price bands (0–100, 100–200, …).
- Total price includes Airbnb's fees as displayed to guests; `priceOriginalTotal` shows the pre-discount figure when the host has lowered the price.

### Use from an AI agent

Available through the Apify MCP server: "Find Airbnb apartments in Lisbon for 12–15 October under €150 a night."

### Support

Open an issue on the Issues tab with the location, dates and run ID. Issues are answered within one working day.

# Actor input Schema

## `locations` (type: `array`):

Places to search, one per line, e.g. "Edinburgh, United Kingdom" or "Lisbon". Leave empty if you provide search URLs.

## `searchUrls` (type: `array`):

Optional: paste full airbnb.com search URLs (with your filters applied) instead of, or as well as, locations.

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

YYYY-MM-DD. Prices are only shown when dates are set. Defaults to 30 days from today.

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

YYYY-MM-DD. Defaults to 2 nights after check-in.

## `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.

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

ISO currency code for prices, e.g. USD, GBP, EUR.

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

Optional lower bound.

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

Optional upper bound.

## `maxResultsPerSearch` (type: `integer`):

Airbnb returns up to ~270 listings per search. Narrow the location or price range for more coverage.

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

Apify data-centre proxies work well for Airbnb and keep runs cheap.

## Actor input object example

```json
{
  "locations": [
    "Edinburgh, United Kingdom"
  ],
  "adults": 2,
  "children": 0,
  "infants": 0,
  "pets": 0,
  "currency": "USD",
  "maxResultsPerSearch": 100,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `results` (type: `string`):

One record per Airbnb listing

# 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 = {
    "locations": [
        "Edinburgh, United Kingdom"
    ],
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("clearrun/airbnb-listings").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 = {
    "locations": ["Edinburgh, United Kingdom"],
    "proxyConfiguration": { "useApifyProxy": True },
}

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

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

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

```

## CLI example

```bash
echo '{
  "locations": [
    "Edinburgh, United Kingdom"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call clearrun/airbnb-listings --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,clearrun/airbnb-listings"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/6JcCSe2vhggYWuBT6/builds/LEAf6W7hnSWkg3pMW/openapi.json
