# Airbnb Listings Scraper (`chimerical_quicklime/airbnb-listings-scraper`) Actor

Search Airbnb by location, dates, guests, price and room type. Get every listing's nightly and total price, rating and review count, room type, bedrooms and beds, coordinates, badges, photos and URL.

- **URL**: https://apify.com/chimerical\_quicklime/airbnb-listings-scraper.md
- **Developed by:** [Khrystyna Skotte](https://apify.com/chimerical_quicklime) (community)
- **Categories:** Travel, Lead generation, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.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 Scraper — search by location & dates

Search Airbnb the way a guest does — location, dates, guests, price range, room type, bedrooms — and get
every result as clean structured data: **nightly and total price**, rating and review count, room type,
bedrooms and beds, coordinates, Guest Favorite and other badges, photos and the listing URL.

No cookies, no login, no browser. Residential proxy is included by default.

### Input

| Field | Default | Notes |
|---|---|---|
| `location` | `Austin, TX` | City, neighborhood, region or address |
| `checkIn` / `checkOut` | — | `YYYY-MM-DD`. With dates you get the exact total for the stay and the per-night rate; without, Airbnb's default estimate |
| `adults` | `2` | |
| `priceMin` / `priceMax` | — | Per night |
| `roomTypes` | all | Entire home/apt, Private room, Shared room, Hotel room |
| `minBedrooms` / `minBeds` / `minBathrooms` | — | |
| `superhostOnly` / `instantBookOnly` | `false` | |
| `maxItems` | `10` | Airbnb returns at most ~270 per search (15 pages × 18). Split by neighborhood or price band for full coverage |

### Output

```json
{
  "listingId": "547878270470501768",
  "name": "Serene & Sunny SoCo Sanctuary with Farmhouse Feel",
  "title": "Guest suite in Austin",
  "subtitle": "11-foot ceilings beside a creek",
  "roomType": "Guest suite",
  "url": "https://www.airbnb.com/rooms/547878270470501768",
  "priceTotal": 742, "priceTotalOriginal": 816, "priceQualifier": "for 3 nights",
  "pricePerNight": 247.33, "nights": 3, "currency": "$",
  "priceText": "$742 for 3 nights, originally $816",
  "rating": 4.99, "reviewCount": 114,
  "bedrooms": "1 bedroom", "beds": "1 queen bed", "details": ["1 bedroom", "1 queen bed"],
  "badges": ["Guest favorite"], "isGuestFavorite": true,
  "latitude": 30.23766, "longitude": -97.74567,
  "photos": ["https://a0.muscache.com/im/pictures/…"], "photoCount": 6,
  "checkIn": "2026-10-10", "checkOut": "2026-10-13", "adults": 2,
  "searchLocation": "Austin, TX", "scrapedAt": "2026-09-06T18:40:00.000Z"
}
```

### Use cases

Short-term-rental market analysis and pricing (compare nightly rates by area, dates and room type),
investment screening, competitor monitoring for hosts and property managers, and travel deal tracking.

### Notes

- Prices are what Airbnb displays for the search: with dates, the stay total including Airbnb's
  displayed discounts; `priceTotalOriginal` is the pre-discount figure when one is shown.
- Listing IDs are Airbnb's canonical numeric IDs, so `url` opens the listing directly.

# Actor input Schema

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

City, neighborhood, region or address, e.g. 'Austin, TX', 'Brooklyn', 'Lisbon', 'Lake Tahoe'.

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

Optional. With dates, prices are exact totals for the stay; without, Airbnb shows its default estimate.

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

Optional.

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

Number of adult guests.

## `priceMin` (type: `integer`):

Optional lower bound in the listing currency.

## `priceMax` (type: `integer`):

Optional upper bound in the listing currency.

## `roomTypes` (type: `array`):

Leave empty for all.

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

Optional.

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

Optional.

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

Optional.

## `superhostOnly` (type: `boolean`):

Only listings from Superhosts.

## `instantBookOnly` (type: `boolean`):

Only listings that can be booked instantly.

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

Airbnb caps any single search at ~270 results (15 pages of 18). Narrow the filters or location to reach more.

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

Residential proxy is required.

## Actor input object example

```json
{
  "location": "Austin, TX",
  "checkIn": "",
  "checkOut": "",
  "adults": 2,
  "roomTypes": [],
  "superhostOnly": false,
  "instantBookOnly": false,
  "maxItems": 10,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

# Actor output Schema

## `records` (type: `string`):

Dataset of scraped listings (JSON).

# 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("chimerical_quicklime/airbnb-listings-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("chimerical_quicklime/airbnb-listings-scraper").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 '{}' |
apify call chimerical_quicklime/airbnb-listings-scraper --silent --output-dataset

```

## MCP server setup

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

```

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/4vHW8L2zI26honIFj/builds/Tv8gxX5WJrI0IGcck/openapi.json
