# Airbnb Availability Calendar (`simpleapi/airbnb-availability-calendar`) Actor

Airbnb Availability Calendar Scraper extracts availability data from Airbnb listing calendars. Collect available and booked dates, pricing, minimum stay rules, and listing details to track occupancy trends, analyze competitors, or monitor rental availability for research and market insights. 🏡📅📊

- **URL**: https://apify.com/simpleapi/airbnb-availability-calendar.md
- **Developed by:** [SimpleAPI](https://apify.com/simpleapi) (community)
- **Categories:** Travel, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$19.99/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 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 Availability Calendar

Apify Actor that fetches **availability and pricing** for Airbnb listings over a configurable date range. Output is one entry per check-in date per listing (same structure as the original script).

### Why use this actor?

- **Bulk URLs**: Process many listing URLs in one run.
- **Proxy fallback**: Starts with no proxy; if the platform blocks, automatically tries datacenter then residential proxy (3 retries), then **sticks with residential** for all remaining requests. Clear proxy events in the log.
- **Structured output**: Dataset rows per date + key-value store `OUTPUT` with the full object `{ "<listingId>": [ entries... ], ... }` (same as your `output.json`).
- **Configurable**: Check-in date, stay length, number of days, guests, currency, optional pricing/booking fields.

### Input

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| **urls** | array | Yes | Airbnb room URLs (e.g. `https://www.airbnb.com/rooms/12345`). Bulk supported. |
| **proxyConfiguration** | object | No | Proxy settings. Default: no proxy; actor handles fallback. |
| checkInDate | string | No | First check-in date (YYYY-MM-DD). Default: 2026-02-27 |
| stayDays | integer | No | Stay length in nights (1–30). Default: 1 |
| numberOfDays | integer | No | Number of calendar days to generate (1–365). Default: 60 |
| adults | integer | No | Number of adults. Default: 2 |
| children | integer | No | Number of children. Default: 0 |
| infants | integer | No | Number of infants. Default: 0 |
| pets | integer | No | Number of pets. Default: 0 |
| currency | string | No | Currency code. Default: USD |
| enrichWithPricing | boolean | No | Include pricing and booking fields in each entry. Default: true |

### Output

- **Dataset**: One row per availability entry (listing + check-in date), with fields such as Listing ID, Check-In Date, Check-Out Date, Host, Title, Booking, Total Price, Room Rating, etc.
- **Key-value store** (`OUTPUT`): Single object keyed by listing ID; each value is an array of entry objects (same shape as the original `output.json`).

### How to run

1. Open [Apify Console](https://console.apify.com) → **Actors**.
2. Select **airbnb-availability-calendar** (or run from source).
3. Set **urls** (and optionally check-in, stay days, number of days, proxy).
4. Run the actor and watch the log for proxy and progress messages.
5. Get results from the **Dataset** tab (table) or **Key-value store** (OUTPUT = full grouped object).

### Proxy behavior

- **Default**: No proxy.
- If the platform **rejects or blocks** the request: try **datacenter** proxy.
- If datacenter fails: try **residential** proxy up to **3 times** (with delay).
- After a **successful** residential request: **use residential for all remaining requests** (sticky). All proxy steps are logged.

### Cautions

- Data is from **publicly available** listing pages. You are responsible for compliance with Airbnb’s terms and applicable law (e.g. privacy, data protection).

### What are other Airbnb scraping tools?
If you want to scrape specific Airbnb data, you can use any of the dedicated scrapers below for faster and more targeted results.

| Scraper Name | Scraper Name |
|---|---|
| [Airbnb Email Scraper](https://apify.com/simpleapi/airbnb-email-scraper) | [Airbnb Phone Number Scraper](https://apify.com/simpleapi/airbnb-phone-number-scraper) |
| [Airbnb Full Year Price Tracker Scraper](https://apify.com/simpleapi/airbnb-full-year-price-tracker-scraper) | [Airbnb Review Scraper](https://apify.com/simpleapi/airbnb-review-scraper) |
| [Airbnb Image Scraper](https://apify.com/simpleapi/airbnb-image-scraper) | [Airbnb Rooms URLs Scraper](https://apify.com/simpleapi/Airbnb-Rooms-URLs-Scraper) |
| [Airbnb Images Scraper](https://apify.com/simpleapi/airbnb-Images-scraper) | [Airbnb Scraper](https://apify.com/simpleapi/airbnb-scraper) |
| [Airbnb Occupancy Scraper](https://apify.com/simpleapi/airbnb-occupancy-scraper) |  |

# Actor input Schema

## `urls` (type: `array`):

Airbnb room URLs or listing IDs. Add multiple for bulk. Use this or listingUrl.
## `listingUrl` (type: `string`):

Single room URL or numeric ID (alternative to urls).
## `startDate` (type: `string`):

First day of the range (YYYY-MM-DD).
## `endDate` (type: `string`):

Last day of the range (YYYY-MM-DD).
## `enrichWithPricing` (type: `boolean`):

Include pricing and booking-related fields in each availability entry.
## `proxyConfiguration` (type: `object`):

Optional. Default: no proxy. On block: datacenter → residential (3 retries), then residential for remaining requests.

## Actor input object example

```json
{
  "urls": [
    "https://www.airbnb.com/rooms/860663943931949474"
  ],
  "startDate": "2025-12-01",
  "endDate": "2025-12-31",
  "enrichWithPricing": false,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
````

# 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 = {
    "urls": [
        "https://www.airbnb.com/rooms/860663943931949474"
    ],
    "proxyConfiguration": {
        "useApifyProxy": false
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("simpleapi/airbnb-availability-calendar").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 = {
    "urls": ["https://www.airbnb.com/rooms/860663943931949474"],
    "proxyConfiguration": { "useApifyProxy": False },
}

# Run the Actor and wait for it to finish
run = client.actor("simpleapi/airbnb-availability-calendar").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 '{
  "urls": [
    "https://www.airbnb.com/rooms/860663943931949474"
  ],
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}' |
apify call simpleapi/airbnb-availability-calendar --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Airbnb Availability Calendar",
        "description": "Airbnb Availability Calendar Scraper extracts availability data from Airbnb listing calendars. Collect available and booked dates, pricing, minimum stay rules, and listing details to track occupancy trends, analyze competitors, or monitor rental availability for research and market insights. 🏡📅📊",
        "version": "0.1",
        "x-build-id": "RpRo6x2Xrn5EX7s3c"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/simpleapi~airbnb-availability-calendar/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-simpleapi-airbnb-availability-calendar",
                "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/simpleapi~airbnb-availability-calendar/runs": {
            "post": {
                "operationId": "runs-sync-simpleapi-airbnb-availability-calendar",
                "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/simpleapi~airbnb-availability-calendar/run-sync": {
            "post": {
                "operationId": "run-sync-simpleapi-airbnb-availability-calendar",
                "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",
                "properties": {
                    "urls": {
                        "title": "🔗 Listing URLs or IDs",
                        "type": "array",
                        "description": "Airbnb room URLs or listing IDs. Add multiple for bulk. Use this or listingUrl.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "listingUrl": {
                        "title": "🔗 Single listing URL or ID",
                        "type": "string",
                        "description": "Single room URL or numeric ID (alternative to urls)."
                    },
                    "startDate": {
                        "title": "📆 Start Date",
                        "pattern": "^(\\d{4})-(0[1-9]|1[0-2])-(0[1-9]|[12]\\d|3[01])$",
                        "type": "string",
                        "description": "First day of the range (YYYY-MM-DD).",
                        "default": "2025-12-01"
                    },
                    "endDate": {
                        "title": "📆 End Date",
                        "pattern": "^(\\d{4})-(0[1-9]|1[0-2])-(0[1-9]|[12]\\d|3[01])$",
                        "type": "string",
                        "description": "Last day of the range (YYYY-MM-DD).",
                        "default": "2025-12-31"
                    },
                    "enrichWithPricing": {
                        "title": "💰 Enrich with Pricing",
                        "type": "boolean",
                        "description": "Include pricing and booking-related fields in each availability entry.",
                        "default": false
                    },
                    "proxyConfiguration": {
                        "title": "🌐 Proxy Configuration",
                        "type": "object",
                        "description": "Optional. Default: no proxy. On block: datacenter → residential (3 retries), then residential for remaining requests."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
