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

Get day-by-day Airbnb availability (and nightly price when available) for one or many listings. Input URLs or IDs + date range; output one Dataset row per day. Clean schema export for research, pricing and lead workflows.

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

## Pricing

from $4.00 / 1,000 calendar days

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?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
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.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

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

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Airbnb Calendar / Availability API — Day-by-Day Listing Calendar

**Airbnb calendar scraper** / **availability API**: get **day-by-day availability** (and nightly price when Airbnb exposes it) for one or many listings. Input URLs or IDs + date range → **one Dataset row per day**.

Built for hosts, revenue managers and STR tools that already have listing IDs — **not** a city search scraper (that niche is crowded). This Actor focuses on **calendar depth**.

> **Scope:** Availability calendar only. Does not search Airbnb by city. Max **50 listings** / run and **366 days** per listing in v0.1.

**Why this Actor:** Per-day rows · URLs or numeric IDs · Currency / locale · Pricing when available · Clean CSV/JSON for pricing models

***

### Table of contents

1. [What this Actor does](#what-this-actor-does)
2. [What you get](#what-you-get)
3. [Features](#features)
4. [Input](#input)
5. [Output example](#output-example)
6. [Output fields](#output-fields)
7. [Quick start (API)](#quick-start-api)
8. [Use cases](#use-cases)
9. [Limitations](#limitations)
10. [FAQ](#faq)
11. [Keywords](#keywords)

***

### What this Actor does

| Step | Action |
|------|--------|
| 1 | Resolve each Airbnb URL / ID to a listing |
| 2 | Fetch public availability calendar months |
| 3 | Emit **one row per night** in your date range |
| 4 | Attach nightly price when present in the calendar payload |

***

### What you get

**Availability**

- `date`, `available` (bool), listing id / URL
- Blocked / booked nights as unavailable

**Pricing (when exposed)**

- Nightly amount + currency
- Useful for ADR pipelines when price is filled

**Run meta**

- `scrapedAt` timestamp for every row

***

### Features

| Capability | Detail |
|------------|--------|
| **Listing-first** | URLs (`/rooms/{id}`) or raw IDs |
| **Day grain** | One Dataset row per date — easy filters in Sheets / BI |
| **Date window** | `startDate` / `endDate` (ISO) |
| **Currency / locale** | e.g. `EUR` + `es` |
| **Batch** | Up to 50 listings per run |

***

### Input

| Field | Required | Description |
|-------|----------|-------------|
| `startUrls` | Yes | Airbnb listing URLs or IDs |
| `startDate` | No | `YYYY-MM-DD` (default: today UTC) |
| `endDate` | No | `YYYY-MM-DD` (default: start + 90d) |
| `currency` | No | Default `EUR` |
| `locale` | No | Default `es` |
| `includePricing` | No | Default `true` |
| `proxyConfiguration` | No | Apify Proxy recommended if blocked |

#### Example

```json
{
  "startUrls": [
    "https://www.airbnb.com/rooms/860663943931949474"
  ],
  "startDate": "2026-10-01",
  "endDate": "2026-12-31",
  "currency": "EUR",
  "locale": "es",
  "includePricing": true
}
```

***

### Output example

```json
{
  "listingId": "860663943931949474",
  "listingUrl": "https://www.airbnb.com/rooms/860663943931949474",
  "date": "2026-10-05",
  "available": true,
  "price": 142,
  "currency": "EUR",
  "scrapedAt": "2026-09-19T20:00:00.000Z"
}
```

***

### Output fields

| Field | Type | Notes |
|-------|------|--------|
| `listingId` | string | Numeric Airbnb id |
| `listingUrl` | string | Canonical rooms URL |
| `date` | string | `YYYY-MM-DD` |
| `available` | boolean | Free to book |
| `price` | number|null | Nightly when provided |
| `currency` | string|null | ISO code |
| `scrapedAt` | string | ISO timestamp |

***

### Quick start (API)

```python
from apify_client import ApifyClient

client = ApifyClient("<YOUR_TOKEN>")
run = client.actor("YOUR_USERNAME/airbnb-calendar-availability").call(
    run_input={
        "startUrls": ["860663943931949474"],
        "startDate": "2026-10-01",
        "endDate": "2026-10-31",
        "currency": "EUR",
    }
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)
```

***

### Use cases

- Build **occupancy / ADR** models (pair with our Occupancy Actor)
- Monitor competitor calendars for a fixed listing set
- Feed pricing tools with night-level availability
- QA that a listing’s open dates match your PMS

***

### Limitations

- Not a **search-by-city** scraper.
- Prices are often missing on blocked nights or some markets.
- Airbnb anti-bot can require proxy on some IPs.
- Respect Airbnb Terms of Service.

***

### FAQ

**Can I pass city search URLs?**\
No — use listing room URLs or IDs only.

**Why is `price` null?**\
Airbnb often omits price on unavailable days or in some locales.

**Max range?**\
366 days from `startDate` in v0.1.

***

### Keywords

airbnb calendar, airbnb availability api, airbnb availability scraper, listing calendar, nightly availability, airbnb pricing calendar, str calendar api

# Actor input Schema

## `startUrls` (type: `array`):

Airbnb room URLs (https://www.airbnb.\*/rooms/{id}) or numeric listing IDs. Max 50 per run.

## `startDate` (type: `string`):

YYYY-MM-DD. Defaults to today (UTC).

## `endDate` (type: `string`):

YYYY-MM-DD. Defaults to startDate + 90 days. Max range 366 days.

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

ISO currency code for prices.

## `locale` (type: `string`):

Airbnb locale (es, en, en-US, fr, …).

## `includePricing` (type: `boolean`):

Include nightly price when Airbnb exposes it on the calendar.

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

Apify proxy settings. Recommended if Airbnb blocks datacenter IPs.

## Actor input object example

```json
{
  "startUrls": [
    "https://www.airbnb.com/rooms/860663943931949474"
  ],
  "startDate": "2026-10-01",
  "endDate": "2026-12-31",
  "currency": "EUR",
  "locale": "es",
  "includePricing": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `calendarDays` (type: `string`):

Dataset items: availability (and optional price) per day per 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 = {
    "startUrls": [
        "https://www.airbnb.com/rooms/860663943931949474"
    ]
};

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

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

```

## MCP server setup

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

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/gN82ML0YMZHcd5gH1/builds/HsiAPwOHk2d5L6cgp/openapi.json
