# Airbnb Deals & Listings API (`makework36/airbnb-deals-api`) Actor

Lightweight API to pull Airbnb deals, prices, and listing data from any city. Supports date ranges, price filters, and room type selection. HTTP-only for low cost.

- **URL**: https://apify.com/makework36/airbnb-deals-api.md
- **Developed by:** [deusex machine](https://apify.com/makework36) (community)
- **Categories:** E-commerce, Travel, Real estate
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

from $5.00 / 1,000 results

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 Price Scraper

Extract listing data from **Airbnb** search results by location. Get prices, ratings, photos, host badges, and coordinates without any browser or API key. Built with raw HTTP requests for maximum speed and low cost.

### What data does it extract?

| Field | Description |
|-------|-------------|
| `id` | Airbnb listing ID |
| `name` | Property title |
| `url` | Direct link to the listing |
| `price` | Total price for the stay (formatted) |
| `priceAmount` | Price as a number |
| `priceCurrency` | Currency code (USD, MXN, EUR, etc.) |
| `pricePerNight` | Nightly breakdown (e.g. "4 nights x $120") |
| `priceQualifier` | Duration context (e.g. "for 4 nights") |
| `rating` | Average guest rating (0-5) |
| `reviewsCount` | Number of guest reviews |
| `ratingLabel` | Full rating description |
| `isSuperhost` | Whether the host has Superhost status |
| `badges` | Property badges (Superhost, Guest favorite, etc.) |
| `roomInfo` | Room details (bedrooms, beds, baths) |
| `locationLabel` | Neighborhood or area name |
| `latitude` | GPS latitude |
| `longitude` | GPS longitude |
| `photos` | Array of photo URLs (up to 6) |
| `thumbnail` | Main photo URL |
| `scrapedAt` | ISO timestamp of extraction |

### Use cases

- **Price monitoring** — track nightly rates for specific areas over time
- **Market research** — compare pricing across neighborhoods or cities
- **Investment analysis** — evaluate rental income potential before buying property
- **Competitor tracking** — monitor competing listings and their pricing strategy
- **Travel planning** — find the best deals for your next trip

### How to use

#### Search by location

```json
{
  "locations": ["Cancun", "Playa del Carmen"],
  "checkin": "2026-06-01",
  "checkout": "2026-06-05",
  "adults": 2,
  "maxListings": 20
}
````

#### Filter by price range

```json
{
  "locations": ["New York"],
  "checkin": "2026-07-10",
  "checkout": "2026-07-15",
  "adults": 2,
  "minPrice": 50,
  "maxPrice": 200,
  "maxListings": 20
}
```

#### Filter by room type

```json
{
  "locations": ["Barcelona"],
  "roomType": "entire",
  "maxListings": 20
}
```

Room types: `entire`, `private`, `shared`, `hotel`

### Input parameters

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `locations` | array | — | Locations to search (e.g. `"Cancun"`, `"Tokyo"`) |
| `checkin` | string | — | Check-in date (`YYYY-MM-DD`) |
| `checkout` | string | — | Check-out date (`YYYY-MM-DD`) |
| `adults` | integer | `2` | Number of guests |
| `maxListings` | integer | `20` | Max listings per location |
| `minPrice` | integer | `0` | Minimum nightly price filter |
| `maxPrice` | integer | `0` | Maximum nightly price filter |
| `roomType` | string | — | Room type filter (`entire`, `private`, `shared`, `hotel`) |

### Output example

```json
{
  "id": "14926879",
  "name": "Ocean view studio in Cancun hotel zone",
  "url": "https://www.airbnb.com/rooms/14926879",
  "price": "$9,750 MXN",
  "priceAmount": 9750,
  "priceCurrency": "MXN",
  "pricePerNight": "4 nights x $2,437.49 MXN",
  "priceQualifier": "for 4 nights",
  "rating": 4.89,
  "reviewsCount": 389,
  "ratingLabel": "4.89 out of 5 average rating, 389 reviews",
  "isSuperhost": true,
  "badges": ["Superhost"],
  "roomInfo": "1 bedroom",
  "locationLabel": "Cancun hotel zone",
  "latitude": 21.04586,
  "longitude": -86.78288,
  "photos": [
    "https://a0.muscache.com/im/pictures/396af173-7aa9-4133-82c0-9481f9941670.jpg"
  ],
  "thumbnail": "https://a0.muscache.com/im/pictures/396af173-7aa9-4133-82c0-9481f9941670.jpg",
  "scrapedAt": "2026-04-15T04:30:00.000Z"
}
```

### Performance & cost

- **~3 seconds** per location search (HTTP only, no browser overhead)
- **Up to 20 listings** per search query
- No browser needed — runs on minimal resources
- Works with Apify proxy for reliable results at scale

### FAQ

**Does it require an Airbnb account?**
No. It reads publicly available search result pages.

**What locations are supported?**
Any location that Airbnb supports — cities, neighborhoods, addresses, landmarks, or country names.

**How often does the data update?**
Every run fetches real-time prices and availability from Airbnb.

**Why is it so fast?**
It uses raw HTTP requests instead of a headless browser. No JavaScript rendering, no screenshots, no waiting for page loads.

**Can I scrape reviews or availability calendars?**
This actor focuses on search-level data (prices, ratings, photos). For detailed reviews or calendar data, you would need to visit each listing page individually.

# Actor input Schema

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

List of locations to search (city names, neighborhoods, addresses).

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

Check-in date in YYYY-MM-DD format. Leave empty for flexible dates.

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

Check-out date in YYYY-MM-DD format. Leave empty for flexible dates.

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

Number of adult guests.

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

Maximum number of listings to extract per location.

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

Minimum nightly price filter (0 = no filter).

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

Maximum nightly price filter (0 = no filter).

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

Currency for prices (e.g. USD, EUR, MXN, GBP).

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

Filter by room type.

## Actor input object example

```json
{
  "locations": [
    "Cancun",
    "Playa del Carmen",
    "New York"
  ],
  "checkin": "2026-06-01",
  "checkout": "2026-06-05",
  "adults": 2,
  "maxListings": 20,
  "minPrice": 0,
  "maxPrice": 0,
  "currency": "USD",
  "roomType": ""
}
```

# 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": [
        "Cancun"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("makework36/airbnb-deals-api").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": ["Cancun"] }

# Run the Actor and wait for it to finish
run = client.actor("makework36/airbnb-deals-api").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 '{
  "locations": [
    "Cancun"
  ]
}' |
apify call makework36/airbnb-deals-api --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Airbnb Deals & Listings API",
        "description": "Lightweight API to pull Airbnb deals, prices, and listing data from any city. Supports date ranges, price filters, and room type selection. HTTP-only for low cost.",
        "version": "1.0",
        "x-build-id": "1zWZvYRc6JUd1b3E5"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/makework36~airbnb-deals-api/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-makework36-airbnb-deals-api",
                "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/makework36~airbnb-deals-api/runs": {
            "post": {
                "operationId": "runs-sync-makework36-airbnb-deals-api",
                "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/makework36~airbnb-deals-api/run-sync": {
            "post": {
                "operationId": "run-sync-makework36-airbnb-deals-api",
                "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": [
                    "locations"
                ],
                "properties": {
                    "locations": {
                        "title": "Locations",
                        "type": "array",
                        "description": "List of locations to search (city names, neighborhoods, addresses).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "checkin": {
                        "title": "Check-in date",
                        "type": "string",
                        "description": "Check-in date in YYYY-MM-DD format. Leave empty for flexible dates."
                    },
                    "checkout": {
                        "title": "Check-out date",
                        "type": "string",
                        "description": "Check-out date in YYYY-MM-DD format. Leave empty for flexible dates."
                    },
                    "adults": {
                        "title": "Number of guests",
                        "minimum": 1,
                        "maximum": 16,
                        "type": "integer",
                        "description": "Number of adult guests.",
                        "default": 2
                    },
                    "maxListings": {
                        "title": "Max listings per location",
                        "minimum": 1,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Maximum number of listings to extract per location.",
                        "default": 20
                    },
                    "minPrice": {
                        "title": "Min price per night",
                        "type": "integer",
                        "description": "Minimum nightly price filter (0 = no filter).",
                        "default": 0
                    },
                    "maxPrice": {
                        "title": "Max price per night",
                        "type": "integer",
                        "description": "Maximum nightly price filter (0 = no filter).",
                        "default": 0
                    },
                    "currency": {
                        "title": "Currency",
                        "type": "string",
                        "description": "Currency for prices (e.g. USD, EUR, MXN, GBP).",
                        "default": "USD"
                    },
                    "roomType": {
                        "title": "Room type",
                        "enum": [
                            "",
                            "entire",
                            "private",
                            "shared",
                            "hotel"
                        ],
                        "type": "string",
                        "description": "Filter by room type.",
                        "default": ""
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
